Reapply change #20983, rolled back by change #22920,
Rafael Garcia-Suarez [Fri, 11 Jun 2004 16:54:00 +0000 (16:54 +0000)]
as noticed by Craig Berry.
p4raw-link: @22920 on //depot/perl: 7d8277e26ba3dacb5d0719896027eea95e497496
p4raw-link: @20983 on //depot/perl: 0e9de459b923410f2c7af3887364c6d4cd0df24e

p4raw-id: //depot/perl@22931

pod/pod2usage.PL
pod/podselect.PL

index ae4aaba..1b14c17 100644 (file)
@@ -15,9 +15,8 @@ use Cwd;
 # This is so that make depend always knows where to find PL derivatives.
 $origdir = cwd;
 chdir(dirname($0));
-($file = basename($0)) =~ s/\.PL$//;
-$file =~ s/\.pl$// if ($^O eq 'os2' or $^O eq 'dos');  # "case-forgiving"
-$file =~ s/\.pl$/.com/ if ($^O eq 'VMS');              # "case-forgiving"
+$file = basename($0, '.PL');
+$file .= '.com' if $^O eq 'VMS';
 
 open OUT,">$file" or die "Can't create $file: $!";
 
index 7022fd2..138e076 100644 (file)
@@ -15,9 +15,8 @@ use Cwd;
 # This is so that make depend always knows where to find PL derivatives.
 $origdir = cwd;
 chdir(dirname($0));
-($file = basename($0)) =~ s/\.PL$//;
-$file =~ s/\.pl$// if ($^O eq 'os2' or $^O eq 'dos');  # "case-forgiving"
-$file =~ s/\.pl$/.com/ if ($^O eq 'VMS');              # "case-forgiving"
+$file = basename($0, '.PL');
+$file .= '.com' if $^O eq 'VMS';
 
 open OUT,">$file" or die "Can't create $file: $!";