topdir.mk + dirs.mk fix: $(PREREQ_DIRS_DONE) was not checked

dirs-all.done doesn\'t check $(PREREQ_DIRS_DONE), this commit fixes that.

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2019-07-01 17:37:10 +00:00
commit 07abf3f93e
2 changed files with 2 additions and 3 deletions

View file

@ -45,7 +45,7 @@ ifneq ($(DONT_CHECK_PREREQ_PROJECTS),true)
endif
# explicit duplication of pattern-rule is needed, otherwise .PHONY: dirs-all.done won't match
dirs-all.done:
dirs-all.done: $(PREREQ_DIRS_DONE)
touch started-dirs-all.done
set -e; for d in $(SUBDIRS_TO_ITERATE) ; do make -wC $$d $*; done
ifneq ($(DONT_CHECK_PREREQ_DONE),true)