This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
1cf326c
)
Don't use Config{'extensions'} under VMS.
author
Perl 5 Porters
<perl5-porters@africa.nicoh.com>
Fri, 15 Mar 1996 12:04:01 +0000
(12:04 +0000)
committer
Charles Bailey
<bailey@genetics.upenn.edu>
Fri, 15 Mar 1996 12:04:01 +0000
(12:04 +0000)
t/lib/posix.t
patch
|
blob
|
blame
|
history
diff --git
a/t/lib/posix.t
b/t/lib/posix.t
index
05b1252
..
23007ff
100755
(executable)
--- a/
t/lib/posix.t
+++ b/
t/lib/posix.t
@@
-4,7
+4,7
@@
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
require Config; import Config;
- if ($Config{'extensions'} !~ /\bPOSIX\b/) {
+ if ($
^O ne 'VMS' and $
Config{'extensions'} !~ /\bPOSIX\b/) {
print "1..0\n";
exit 0;
}