[svn:parrot] r36750 - trunk/config/init/hints

rurban at svn.parrot.org rurban at svn.parrot.org
Sun Feb 15 10:14:10 UTC 2009


Author: rurban
Date: Sun Feb 15 10:14:09 2009
New Revision: 36750
URL: https://trac.parrot.org/parrot/changeset/36750

Log:
[cage] uppercase cc on MSWin32 possible

Modified:
   trunk/config/init/hints/mswin32.pm

Modified: trunk/config/init/hints/mswin32.pm
==============================================================================
--- trunk/config/init/hints/mswin32.pm	Sun Feb 15 04:27:57 2009	(r36749)
+++ trunk/config/init/hints/mswin32.pm	Sun Feb 15 10:14:09 2009	(r36750)
@@ -19,10 +19,10 @@
     # We do one bit of its work early here, because we need the result now.
     $cc = $conf->options->get('cc') if defined $conf->options->get('cc');
 
-    my $is_msvc  = $cc =~ m/\bcl(?:\.exe)?/;
-    my $is_intel = $cc =~ m/\bicl(?:\.exe)?/;
-    my $is_mingw = $cc =~ m/\bgcc(?:\.exe)?/;
-    my $is_bcc   = $cc =~ m/\bbcc32(?:\.exe)?/;
+    my $is_msvc  = $cc =~ m/\bcl(?:\.exe)?/i;
+    my $is_intel = $cc =~ m/\bicl(?:\.exe)?/i;
+    my $is_mingw = $cc =~ m/\bgcc(?:\.exe)?/i;
+    my $is_bcc   = $cc =~ m/\bbcc32(?:\.exe)?/i;
 
     $conf->data->set(
         win32  => 1,


More information about the parrot-commits mailing list