From: Paul Smith Date: Fri, 17 Sep 1999 04:20:45 +0000 (+0000) Subject: * Fix escaping from perl to the shell. X-Git-Tag: 3.78~1 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=3c83c469e43bb26203e2e11333df6fdfc5919a2a;p=thirdparty%2Fmake.git * Fix escaping from perl to the shell. --- diff --git a/tests/run_make_tests.pl b/tests/run_make_tests.pl index 4130b3d0..70b1cf81 100755 --- a/tests/run_make_tests.pl +++ b/tests/run_make_tests.pl @@ -155,7 +155,7 @@ sub set_more_defaults # Find the full pathname of Make. For DOS systems this is more # complicated, so we ask make itself. - $make_path = `sh -c 'echo "all:;\@echo \$(MAKE)" | $make_path -f-'`; + $make_path = `sh -c 'echo "all:;\@echo \\\$(MAKE)" | $make_path -f-'`; chop $make_path; print "Make\t= `$make_path'\n" if $debug;