From: Jarkko Hietaniemi Date: Wed, 10 Oct 2001 20:20:22 +0000 (+0000) Subject: VMS needs quotes around the -I option to keep it from X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=11ee3f28f59de5dc79d5d9bf65008aa2aed46c49;p=p5sagit%2Fp5-mst-13.2.git VMS needs quotes around the -I option to keep it from being downcased, from Charles Lane. p4raw-id: //depot/perl@12396 --- diff --git a/t/run/kill_perl.t b/t/run/kill_perl.t index 1d09d4e..ce98e01 100644 --- a/t/run/kill_perl.t +++ b/t/run/kill_perl.t @@ -79,7 +79,7 @@ foreach my $prog (@prgs) { $results = `$^X -I::lib -MMac::err=unix $switch $tmpfile`; } else { - $results = `./perl -I../lib $switch $tmpfile 2>&1`; + $results = `./perl "-I../lib" $switch $tmpfile 2>&1`; } my $status = $?;