summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2012-02-17 00:48:51 +0100
committerDave Lawrence <dlawrence@mozilla.com>2012-02-17 00:48:51 +0100
commita636e89b6851367fa4e59e1bb646d1ad8d3456a6 (patch)
tree9b8f57862b0cadba10494a98036e902cd7d7c5f9 /t
parent1dcfd9872fe4d43785e76030a89122424ffd4a7d (diff)
parent4622fc071220abaf0defbbde7be6c0c9ecba8aa8 (diff)
downloadbugzilla-a636e89b6851367fa4e59e1bb646d1ad8d3456a6.tar.gz
bugzilla-a636e89b6851367fa4e59e1bb646d1ad8d3456a6.tar.xz
merged with bugzilla/4.2
Diffstat (limited to 't')
-rw-r--r--t/001compile.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/001compile.t b/t/001compile.t
index 9c5b50e2d..a2176babd 100644
--- a/t/001compile.t
+++ b/t/001compile.t
@@ -67,7 +67,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`;