Preserve the backslash that's printed by echo.

This commit is contained in:
Paul Smith 2005-08-29 18:45:31 +00:00
parent f7598efb67
commit 0ffd22cb44

View 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');