aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2022-04-28 16:05:11 +0200
committerLoïc Hoguin <[email protected]>2022-04-28 16:05:11 +0200
commit73a0cc2bf4edeeaedc80ede6558e5db3b089bc51 (patch)
tree7b14973c902b081086ad4ec491c6790070c6497e /test
parentbc9053baca8d75cb045e6404e54da7a4669d613a (diff)
downloaderlang.mk-73a0cc2bf4edeeaedc80ede6558e5db3b089bc51.tar.gz
erlang.mk-73a0cc2bf4edeeaedc80ede6558e5db3b089bc51.tar.bz2
erlang.mk-73a0cc2bf4edeeaedc80ede6558e5db3b089bc51.zip
Fix core-deps-fetch-hex test when LEGACY=1
Diffstat (limited to 'test')
-rw-r--r--test/core_deps.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/core_deps.mk b/test/core_deps.mk
index c7778ed..2d3f085 100644
--- a/test/core_deps.mk
+++ b/test/core_deps.mk
@@ -599,12 +599,12 @@ core-deps-fetch-hex: init
$t cp ../erlang.mk $(APP)/
$t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
- $i "Add Cowboy 1.0.0 to the list of dependencies"
+ $i "Add Cowboy 1.0.0 and SystemD 0.6.0 to the list of dependencies"
$t perl -ni.bak -e 'print;if ($$.==1) {print "DEPS = cowboy systemd\ndep_cowboy = hex 1.0.0\ndep_systemd = hex 0.6.0\n"}' $(APP)/Makefile
ifdef LEGACY
- $i "Add Cowboy to the applications key in the .app.src file"
- $t perl -ni.bak -e 'print;if ($$.==7) {print "\t\tcowboy,\n"}' $(APP)/src/$(APP).app.src
+ $i "Add Cowboy and SystemD to the applications key in the .app.src file"
+ $t perl -ni.bak -e 'print;if ($$.==7) {print "\t\tcowboy,\n\t\tsystemd,\n"}' $(APP)/src/$(APP).app.src
endif
$i "Build the application"