mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 03:53:32 +01:00
Fix: Failing $(PREREQ_DIRS_DONE) doesn\'t have sub-subdirectories rebuilt
Subdirectories are now always rebuilt with FORCE_REBUILD_SUBDIRS=true. Otherwise the above check fails to even reach the source code. Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
07abf3f93e
commit
e0f2e04447
1 changed files with 1 additions and 1 deletions
|
|
@ -47,7 +47,7 @@ endif
|
|||
# explicit duplication of pattern-rule is needed, otherwise .PHONY: dirs-all.done won't match
|
||||
dirs-all.done: $(PREREQ_DIRS_DONE)
|
||||
touch started-dirs-all.done
|
||||
set -e; for d in $(SUBDIRS_TO_ITERATE) ; do make -wC $$d $*; done
|
||||
set -e; for d in $(SUBDIRS_TO_ITERATE) ; do FORCE_REBUILD_SUBDIRS=true make -wC $$d $*; done
|
||||
ifneq ($(DONT_CHECK_PREREQ_DONE),true)
|
||||
touch $@
|
||||
endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue