[svn:parrot] r36724 - trunk/t/pmc

rurban at svn.parrot.org rurban at svn.parrot.org
Sat Feb 14 09:56:14 UTC 2009


Author: rurban
Date: Sat Feb 14 09:56:13 2009
New Revision: 36724
URL: https://trac.parrot.org/parrot/changeset/36724

Log:
[cage] fix failing "ccache cl" detection from smoke #18009

Modified:
   trunk/t/pmc/os.t

Modified: trunk/t/pmc/os.t
==============================================================================
--- trunk/t/pmc/os.t	Sat Feb 14 09:45:29 2009	(r36723)
+++ trunk/t/pmc/os.t	Sat Feb 14 09:56:13 2009	(r36724)
@@ -14,7 +14,7 @@
 my $MSWin32 = $^O =~ m!MSWin32!;
 my $cygwin  = $^O =~ m!cygwin!;
 my $solaris = $^O =~ m!solaris!;
-my $MSVC = grep { $PConfig{cc} eq $_ } (qw(cl cl.exe));
+my $MSVC = $PConfig{cc} =~ m/\bcl(?:\.exe)?/i;
 
 =head1 NAME
 


More information about the parrot-commits mailing list