Browse Source

Fix an issue with escaping double quotes of Erlang snippets

Loïc Hoguin 10 years ago
parent
commit
6ec53b3bfd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/core.mk

+ 1 - 1
core/core.mk

@@ -91,7 +91,7 @@ define newline
 endef
 
 define erlang
-$(ERL) -eval "$(subst $(newline),,$(subst ",\\",$(1)))"
+$(ERL) -eval "$(subst $(newline),,$(subst ",\",$(1)))"
 endef
 
 ifeq ($(shell which wget 2>/dev/null | wc -l), 1)