projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
1cf326c
)
Don't use Config{'extensions'} under VMS.
Perl 5 Porters [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;
}