|
@@ -57,7 +57,7 @@ define app_file
|
|
|
{application, $(PROJECT), [
|
|
|
{description, "$(PROJECT_DESCRIPTION)"},
|
|
|
{vsn, "$(PROJECT_VERSION)"},
|
|
|
- {id, "$(1)"},
|
|
|
+ $(if $(IS_DEP),{id, "$(1)"},)
|
|
|
{modules, [$(call comma_list,$(2))]},
|
|
|
{registered, []},
|
|
|
{applications, [$(call comma_list,kernel stdlib $(OTP_DEPS) $(DEPS))]}
|
|
@@ -68,7 +68,7 @@ define app_file
|
|
|
{application, $(PROJECT), [
|
|
|
{description, "$(PROJECT_DESCRIPTION)"},
|
|
|
{vsn, "$(PROJECT_VERSION)"},
|
|
|
- {id, "$(1)"},
|
|
|
+ $(if $(IS_DEP),{id$(comma)$(space)"$(1)"}$(comma))
|
|
|
{modules, [$(call comma_list,$(2))]},
|
|
|
{registered, [$(call comma_list,$(PROJECT)_sup $(PROJECT_REGISTERED))]},
|
|
|
{applications, [$(call comma_list,kernel stdlib $(OTP_DEPS) $(DEPS))]},
|