summaryrefslogtreecommitdiff
path: root/pod/pod2usage.PL
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2004-06-11 16:54:00 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2004-06-11 16:54:00 +0000
commit4ffcea3f5b1ee6f48bb2a7a492994fa6c5482138 (patch)
tree211463d330ae3ee65b553cffd5fab616e2f6cab1 /pod/pod2usage.PL
parent1049165893adb3415151959c6e5e7ea5fb87c480 (diff)
downloadperl-4ffcea3f5b1ee6f48bb2a7a492994fa6c5482138.tar.gz
Reapply change #20983, rolled back by change #22920,
as noticed by Craig Berry. p4raw-link: @22920 on //depot/perl: 7d8277e26ba3dacb5d0719896027eea95e497496 p4raw-link: @20983 on //depot/perl: 0e9de459b923410f2c7af3887364c6d4cd0df24e p4raw-id: //depot/perl@22931
Diffstat (limited to 'pod/pod2usage.PL')
-rw-r--r--pod/pod2usage.PL5
1 files changed, 2 insertions, 3 deletions
diff --git a/pod/pod2usage.PL b/pod/pod2usage.PL
index ae4aaba93b..1b14c1777c 100644
--- a/pod/pod2usage.PL
+++ b/pod/pod2usage.PL
@@ -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: $!";