From: Paul Smith Date: Mon, 29 Aug 2005 18:45:31 +0000 (+0000) Subject: Preserve the backslash that's printed by echo. X-Git-Tag: 3.81~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ffd22cb448ad10d5d212dd4760c9464ad5f1a92;p=thirdparty%2Fmake.git Preserve the backslash that's printed by echo. --- diff --git a/tests/scripts/functions/eval b/tests/scripts/functions/eval index 9595d4e3..6f02a7ab 100644 --- a/tests/scripts/functions/eval +++ b/tests/scripts/functions/eval @@ -149,11 +149,11 @@ $(eval $(FOO)) run_make_test(' define FOO -all: ; @echo he\llo +all: ; @echo '."'".'he\llo'."'".' @echo world endef $(eval $(FOO)) -', '', 'hello +', '', 'he\llo world');