aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJean-Sébastien Pédron <[email protected]>2016-12-14 15:31:52 +0100
committerLoïc Hoguin <[email protected]>2016-12-19 10:26:28 +0100
commit1361da6c7b1fea8cb08c57689395147835ec3c35 (patch)
treec43a94d150a466945ec2b06a19cbceba37dab668 /core
parentaf32c4f56709195e51a06f0f8586ae5c4d2c0f7f (diff)
downloaderlang.mk-1361da6c7b1fea8cb08c57689395147835ec3c35.tar.gz
erlang.mk-1361da6c7b1fea8cb08c57689395147835ec3c35.tar.bz2
erlang.mk-1361da6c7b1fea8cb08c57689395147835ec3c35.zip
core/erlc.mk: Quote application name in .app
Diffstat (limited to 'core')
-rw-r--r--core/erlc.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/erlc.mk b/core/erlc.mk
index bf6d605..51255b1 100644
--- a/core/erlc.mk
+++ b/core/erlc.mk
@@ -61,7 +61,7 @@ endif
ifeq ($(wildcard src/$(PROJECT_MOD).erl),)
define app_file
-{application, $(PROJECT), [
+{application, '$(PROJECT)', [
{description, "$(PROJECT_DESCRIPTION)"},
{vsn, "$(PROJECT_VERSION)"},$(if $(IS_DEP),
{id$(comma)$(space)"$(1)"}$(comma))
@@ -73,7 +73,7 @@ define app_file
endef
else
define app_file
-{application, $(PROJECT), [
+{application, '$(PROJECT)', [
{description, "$(PROJECT_DESCRIPTION)"},
{vsn, "$(PROJECT_VERSION)"},$(if $(IS_DEP),
{id$(comma)$(space)"$(1)"}$(comma))