cvsuser 03/05/30 08:48:16
Modified: languages/imcc TestCompiler.pm
Log:
Fix for IMCC Win32 path bug I just introduced.
Revision Changes Path
1.10 +1 -1 parrot/languages/imcc/TestCompiler.pm
Index: TestCompiler.pm
===================================================================
RCS file: /cvs/public/parrot/languages/imcc/TestCompiler.pm,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -w -r1.9 -r1.10
--- TestCompiler.pm 30 May 2003 14:55:21 -0000 1.9
+++ TestCompiler.pm 30 May 2003 15:48:16 -0000 1.10
@@ -90,7 +90,7 @@
my $s = $PConfig{slash};
my $IMCC = $ENV{IMCC} || ".${s}imcc";
# If $ENV{IMCC} is set from root Makefile, adjust the path.
- $IMCC =~ s/^languages${s}imcc${s}/.${s}/;
+ $IMCC =~ s{^languages[/\\]imcc}{.};
if ($gen_pasm) {
$TEST_PROG_ARGS =~ s/-O.//;