Просмотр исходного кода

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.
Jean-Sébastien Pédron 5 лет назад
Родитель
Сommit
40c2b81c64
1 измененных файлов с 0 добавлено и 7 удалено
  1. 0 7
      core/deps-tools.mk

+ 0 - 7
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); \