From 40c2b81c64e74add724a01051431abf8fd79fd73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-S=C3=A9bastien=20P=C3=A9dron?= Date: Tue, 30 Jul 2019 11:38:33 +0200 Subject: Recursive deps list: don't handle apps specifically They are already listed in `$^` and thus already taken care of. No need to visit them twice. --- core/deps-tools.mk | 7 ------- 1 file changed, 7 deletions(-) diff --git a/core/deps-tools.mk b/core/deps-tools.mk index c7203fa..e3eb913 100644 --- a/core/deps-tools.mk +++ b/core/deps-tools.mk @@ -62,13 +62,6 @@ $(ERLANG_MK_RECURSIVE_TEST_DEPS_LIST) \ $(ERLANG_MK_RECURSIVE_SHELL_DEPS_LIST): | $(ERLANG_MK_TMP) ifeq ($(IS_APP)$(IS_DEP),) $(verbose) rm -f $(ERLANG_MK_RECURSIVE_TMP_LIST) -endif -ifndef IS_APP - $(verbose) set -e; for dep in $(ALL_APPS_DIRS) ; do \ - $(MAKE) -C $$dep $@ \ - IS_APP=1 \ - ERLANG_MK_RECURSIVE_TMP_LIST=$(ERLANG_MK_RECURSIVE_TMP_LIST); \ - done endif $(verbose) set -e; for dep in $^ ; do \ if ! grep -qs ^$$dep$$ $(ERLANG_MK_RECURSIVE_TMP_LIST); then \ -- cgit v1.2.3