diff options
author | Perl 5 Porters <perl5-porters@africa.nicoh.com> | 1996-03-17 10:18:21 +0000 |
---|---|---|
committer | Charles Bailey <bailey@genetics.upenn.edu> | 1996-03-17 10:18:21 +0000 |
commit | f360dba143c864a53fdb1573b40795cfe2331220 (patch) | |
tree | 261c1c2d605178381f828a22d0dc812732babf5e /t | |
parent | 79dd614e1e8c3b0e4ed35016e6971240b606da64 (diff) | |
download | perl-f360dba143c864a53fdb1573b40795cfe2331220.tar.gz |
Use $^O
Diffstat (limited to 't')
-rwxr-xr-x | t/lib/safe.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/lib/safe.t b/t/lib/safe.t index dfd6032cc7..e59c81406b 100755 --- a/t/lib/safe.t +++ b/t/lib/safe.t @@ -4,7 +4,7 @@ BEGIN { chdir 't' if -d 't'; @INC = '../lib'; require Config; import Config; - if ($Config{'extensions'} !~ /\bSafe\b/ && $Config{'osname'} ne 'VMS') { + if ($Config{'extensions'} !~ /\bSafe\b/ && $^O ne 'VMS') { print "1..0\n"; exit 0; } |