diff options
author | Paul Smith <psmith@gnu.org> | 1999-09-17 04:20:45 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 1999-09-17 04:20:45 +0000 |
commit | 3c83c469e43bb26203e2e11333df6fdfc5919a2a (patch) | |
tree | 5792715d7e5d2ad291d939a65f1fd9995ddc2e39 /tests | |
parent | a63f51340b540074dd98bfc7201e2221c5671d28 (diff) | |
download | make-git-3c83c469e43bb26203e2e11333df6fdfc5919a2a.tar.gz |
* Fix escaping from perl to the shell.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/run_make_tests.pl | 2 |
1 files changed, 1 insertions, 1 deletions
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; |