diff options
author | zll600 <[email protected]> | 2024-06-16 11:03:41 +0800 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2024-06-24 14:32:46 +0200 |
commit | b8a27ab752389394bfdb8c15d1b69455c313991e (patch) | |
tree | f914adf24dba4e69a2f8aa62643815d3399766e6 /plugins/bootstrap.mk | |
parent | 396761469b69f7a328343cdd1b2d18d8b5552f83 (diff) | |
download | erlang.mk-b8a27ab752389394bfdb8c15d1b69455c313991e.tar.gz erlang.mk-b8a27ab752389394bfdb8c15d1b69455c313991e.tar.bz2 erlang.mk-b8a27ab752389394bfdb8c15d1b69455c313991e.zip |
fix: use REL_DEPS instead of BUILD_DEPS in plugins/bootstrap.mk
Diffstat (limited to 'plugins/bootstrap.mk')
-rw-r--r-- | plugins/bootstrap.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/bootstrap.mk b/plugins/bootstrap.mk index 2e0ad8f..3ece184 100644 --- a/plugins/bootstrap.mk +++ b/plugins/bootstrap.mk @@ -451,7 +451,7 @@ endif $(verbose) mkdir config/ $(verbose) $(call core_render,bs_sys_config,config/sys.config) $(verbose) $(call core_render,bs_vm_args,config/vm.args) - $(verbose) awk '/^include erlang.mk/ && !ins {print "BUILD_DEPS += relx";ins=1};{print}' Makefile > Makefile.bak + $(verbose) awk '/^include erlang.mk/ && !ins {print "REL_DEPS += relx";ins=1};{print}' Makefile > Makefile.bak $(verbose) mv Makefile.bak Makefile new-app: |