projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
846f184
)
MM_Win32::maybe_command() case-insesitivity tweak
Gurusamy Sarathy [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 {