aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2019-06-26 14:47:18 +0200
committerLoïc Hoguin <[email protected]>2019-06-26 14:47:18 +0200
commit3d4edcf31426a766be26caae329ff0cc688a83d7 (patch)
tree344f2a79514dfe0626070705b77f1bf5c58c28d9 /core
parentdb8fc6859985287ae40a548b1296e2ef116ce73e (diff)
downloaderlang.mk-3d4edcf31426a766be26caae329ff0cc688a83d7.tar.gz
erlang.mk-3d4edcf31426a766be26caae329ff0cc688a83d7.tar.bz2
erlang.mk-3d4edcf31426a766be26caae329ff0cc688a83d7.zip
Fix "make eunit/ct" not fetching apps dependencies
Diffstat (limited to 'core')
-rw-r--r--core/test.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/test.mk b/core/test.mk
index 3cc9d0a..bbacbbe 100644
--- a/core/test.mk
+++ b/core/test.mk
@@ -55,7 +55,7 @@ endif
# We only care about compiling the current application.
ifdef IS_APP
test-build-app:: ERLC_OPTS=$(TEST_ERLC_OPTS)
-test-build-app:: test-deps
+test-build-app:: deps test-deps
ifneq ($(wildcard $(TEST_DIR)),)
$(verbose) $(MAKE) --no-print-directory test-dir ERLC_OPTS="$(call escape_dquotes,$(TEST_ERLC_OPTS))"
endif