diff options
Diffstat (limited to 'x2p')
-rw-r--r-- | x2p/find2perl.PL | 3 | ||||
-rw-r--r-- | x2p/s2p.PL | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/x2p/find2perl.PL b/x2p/find2perl.PL index fd8b134fbc..32f78fe23f 100644 --- a/x2p/find2perl.PL +++ b/x2p/find2perl.PL @@ -15,8 +15,7 @@ use File::Basename qw(&basename &dirname); chdir(dirname($0)); ($file = basename($0)) =~ s/\.PL$//; $file =~ s/\.pl$// - if ($Config{'osname'} eq 'VMS' or - $Config{'osname'} eq 'OS2'); # "case-forgiving" + if ($^O eq 'VMS' or $^O eq 'os2'); # "case-forgiving" open OUT,">$file" or die "Can't create $file: $!"; diff --git a/x2p/s2p.PL b/x2p/s2p.PL index 4f7293d4c2..29864b418a 100644 --- a/x2p/s2p.PL +++ b/x2p/s2p.PL @@ -15,8 +15,7 @@ use File::Basename qw(&basename &dirname); chdir(dirname($0)); ($file = basename($0)) =~ s/\.PL$//; $file =~ s/\.pl$// - if ($Config{'osname'} eq 'VMS' or - $Config{'osname'} eq 'OS2'); # "case-forgiving" + if ($^O eq 'VMS' or $^O eq 'os2'); # "case-forgiving" open OUT,">$file" or die "Can't create $file: $!"; |