mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 03:53:32 +01:00
dirs.mk: Fix dirs-started-.done was deleted by build_XXX target
There is a rm -f dirs-*.done in build_XXX, so I've renamed dirs-started-all.done to started-dirs-all.done Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
4ed00f0186
commit
6f75d72296
1 changed files with 2 additions and 2 deletions
|
|
@ -65,7 +65,7 @@ endif
|
|||
|
||||
# explicit duplication of pattern-rule is needed, otherwise .PHONY: dirs-all.done won't match
|
||||
dirs-all.done:
|
||||
touch dirs-started-all.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)
|
||||
touch $@
|
||||
|
|
@ -76,7 +76,7 @@ dirs-all.done: $(wildcard $(BUILD_HDRDIR)/*.h) $(wildcard $(BUILD_HDRDIR)/$(HDRD
|
|||
endif
|
||||
|
||||
dirs-%.done:
|
||||
touch dirs-started-$*.done
|
||||
touch started-dirs-$*.done
|
||||
set -e; for d in $(SUBDIRS_TO_ITERATE) ; do make -wC $$d $*; done
|
||||
ifneq ($(DONT_CHECK_PREREQ_DONE),true)
|
||||
touch $@
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue