This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
(was Re: DProf tests with -p broken on VMS)
authorCraig A. Berry <craigberry@mac.com>
Mon, 4 Aug 2003 19:29:51 +0000 (14:29 -0500)
committerJarkko Hietaniemi <jhi@iki.fi>
Tue, 5 Aug 2003 06:12:07 +0000 (06:12 +0000)
From: "Craig A. Berry" <craigberry@mac.com>
Message-ID: <3F2EFA7F.6070801@mac.com>

p4raw-id: //depot/perl@20488

utils/dprofpp.PL

index 8c2ef79..d48b3bf 100644 (file)
@@ -16,7 +16,7 @@ use File::Spec;
 chdir(dirname($0));
 ($file = basename($0)) =~ s/\.PL$//;
 $file =~ s/\.pl$// if ($Config{'osname'} eq 'OS2');      # "case-forgiving"
-$file =~ s/\.pl$/.com/ if ($Config{'osname'} eq 'VMS');  # "case-forgiving"
+$file =~ s/\.pl$/.com/i if ($Config{'osname'} eq 'VMS');  # "case-forgiving"
 
 my $dprof_pm = File::Spec->catfile(File::Spec->updir, 'ext', 'Devel', 'DProf', 'DProf.pm');
 my $VERSION = 0;