aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/bootstrap.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2018-11-28 15:10:54 +0100
committerLoïc Hoguin <[email protected]>2018-11-28 15:10:54 +0100
commite78e76c701c4554295ddfd6083b7aa54a378c6a9 (patch)
tree43f8945e267f7c710285a88366ffdfc8a562cf9a /plugins/bootstrap.mk
parent3803446bcd539205af129cc5776ca4034e356629 (diff)
downloaderlang.mk-e78e76c701c4554295ddfd6083b7aa54a378c6a9.tar.gz
erlang.mk-e78e76c701c4554295ddfd6083b7aa54a378c6a9.tar.bz2
erlang.mk-e78e76c701c4554295ddfd6083b7aa54a378c6a9.zip
Rename the rel/ directory to config/ by default
Diffstat (limited to 'plugins/bootstrap.mk')
-rw-r--r--plugins/bootstrap.mk14
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/bootstrap.mk b/plugins/bootstrap.mk
index c182152..6321085 100644
--- a/plugins/bootstrap.mk
+++ b/plugins/bootstrap.mk
@@ -94,8 +94,8 @@ endef
define bs_relx_config
{release, {$p_release, "1"}, [$p, sasl, runtime_tools]}.
{extended_start_script, true}.
-{sys_config, "rel/sys.config"}.
-{vm_args, "rel/vm.args"}.
+{sys_config, "config/sys.config"}.
+{vm_args, "config/vm.args"}.
endef
define bs_sys_config
@@ -441,14 +441,14 @@ bootstrap-rel:
ifneq ($(wildcard relx.config),)
$(error Error: relx.config already exists)
endif
-ifneq ($(wildcard rel/),)
- $(error Error: rel/ directory already exists)
+ifneq ($(wildcard config/),)
+ $(error Error: config/ directory already exists)
endif
$(eval p := $(PROJECT))
$(verbose) $(call core_render,bs_relx_config,relx.config)
- $(verbose) mkdir rel/
- $(verbose) $(call core_render,bs_sys_config,rel/sys.config)
- $(verbose) $(call core_render,bs_vm_args,rel/vm.args)
+ $(verbose) mkdir config/
+ $(verbose) $(call core_render,bs_sys_config,config/sys.config)
+ $(verbose) $(call core_render,bs_vm_args,config/vm.args)
new-app:
ifndef in