Preserve the backslash that's printed by echo.
authorPaul Smith <psmith@gnu.org>
Mon, 29 Aug 2005 18:45:31 +0000 (18:45 +0000)
committerPaul Smith <psmith@gnu.org>
Mon, 29 Aug 2005 18:45:31 +0000 (18:45 +0000)
tests/scripts/functions/eval

index 9595d4e..6f02a7a 100644 (file)
@@ -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');