This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
846f184
)
MM_Win32::maybe_command() case-insesitivity tweak
author
Gurusamy Sarathy
<gsar@cpan.org>
Sun, 2 Aug 1998 03:29:41 +0000
(
03:29
+0000)
committer
Gurusamy Sarathy
<gsar@cpan.org>
Sun, 2 Aug 1998 03:29:41 +0000
(
03:29
+0000)
p4raw-id: //depot/maint-5.005/perl@1679
lib/ExtUtils/MM_Win32.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/ExtUtils/MM_Win32.pm
b/lib/ExtUtils/MM_Win32.pm
index
53d7b4f
..
7894ddd
100644
(file)
--- a/
lib/ExtUtils/MM_Win32.pm
+++ b/
lib/ExtUtils/MM_Win32.pm
@@
-74,7
+74,7
@@
sub maybe_command {
for (@e) { $e .= "\Q$_\E|" }
chop $e;
# see if file ends in one of the known extensions
- if ($file =~ /($e)$/) {
+ if ($file =~ /($e)$/
i
) {
return $file if -e $file;
}
else {