Author: infinoid
Date: Mon Jan 5 10:32:35 2009
New Revision: 35001
Modified:
trunk/lib/Parrot/Test.pm
Log:
Fix a build error introduced in r34981 (precedence error). This fixes TT #131.
Modified: trunk/lib/Parrot/Test.pm
==============================================================================
--- trunk/lib/Parrot/Test.pm (original)
+++ trunk/lib/Parrot/Test.pm Mon Jan 5 10:32:35 2009
@@ -962,7 +962,7 @@
my $libparrot =
$PConfig{parrot_is_shared}
? ("$PConfig{rpath_blib} " .
- ($^O =~ m/MSWin32/ and $PConfig{cc} eq 'cl'
+ (($^O =~ m/MSWin32/ and $PConfig{cc} eq 'cl')
? "" : "-L$PConfig{blib_dir} "))
. (
$^O =~ m/MSWin32/