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

index 53d7b4f..7894ddd 100644 (file)
@@ -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 {