diff options
author | Jean-Sébastien Pédron <[email protected]> | 2019-07-30 11:38:33 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2019-07-30 15:11:57 +0200 |
commit | 40c2b81c64e74add724a01051431abf8fd79fd73 (patch) | |
tree | cbe414e6e7398aacc4ca6ce19be81e93dbbb3236 | |
parent | a9a667e5bc3da3eb6fbb515ae55a2e9ae08b0148 (diff) | |
download | erlang.mk-40c2b81c64e74add724a01051431abf8fd79fd73.tar.gz erlang.mk-40c2b81c64e74add724a01051431abf8fd79fd73.tar.bz2 erlang.mk-40c2b81c64e74add724a01051431abf8fd79fd73.zip |
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.
-rw-r--r-- | core/deps-tools.mk | 7 |
1 files changed, 0 insertions, 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 @@ -63,13 +63,6 @@ $(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 \ echo $$dep >> $(ERLANG_MK_RECURSIVE_TMP_LIST); \ |