From 2aa5d7736215b9df4b865c4dd187f1b083ed52c9 Mon Sep 17 00:00:00 2001 From: Marc Schumann Date: Feb 15 2012 17:54:21 +0000 Subject: Test 1 fails if PERLLIB contains paths with whitespace. r=gerv; a=LpSolit https://bugzilla.mozilla.org/show_bug.cgi?id=714074 --- diff --git a/t/001compile.t b/t/001compile.t index 9e63da0..97a339b 100644 --- a/t/001compile.t +++ b/t/001compile.t @@ -62,7 +62,7 @@ sub compile_file { my $libs = ''; if ($ENV{PERL5LIB}) { - $libs = join " ", map { "-I$_" } split /$Config{path_sep}/, $ENV{PERL5LIB}; + $libs = join " ", map { "-I\"$_\"" } split /$Config{path_sep}/, $ENV{PERL5LIB}; } my $perl = qq{"$^X"}; my $output = `$perl $libs -wc$T $file 2>&1`;