aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-09-06 14:02:58 +0200
committerLoïc Hoguin <[email protected]>2015-09-06 14:02:58 +0200
commit0f9554a2fc044a477a343771d053083b8a0fc189 (patch)
treeda911fb94c0f81c5c910d45b9ab82ba486df0e23 /test/Makefile
parentcf8f820267afa18cc3647224f46a7a307f58f289 (diff)
downloaderlang.mk-0f9554a2fc044a477a343771d053083b8a0fc189.tar.gz
erlang.mk-0f9554a2fc044a477a343771d053083b8a0fc189.tar.bz2
erlang.mk-0f9554a2fc044a477a343771d053083b8a0fc189.zip
Fix escaping of backslash
Was working fine for me, not on CI.
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index 222834a..1820f73 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -313,7 +313,7 @@ core-app-generate-erl-include: build clean-core-app-generate-erl-include
$i "Append rules to the Makefile to generate a .erl module"
$t echo "\$$(PROJECT).d:: src/generated.erl" >> $(APP)/Makefile
$t echo "src/generated.erl:: script.sh;" \
- "printf \"%s\n\"" \
+ "printf \"%s\\n\"" \
"\"-module(generated).\"" \
"\"-include(\\\"included.hrl\\\").\" > \$$@" >> $(APP)/Makefile