build: always run package/cleanup before package/compile
Remove unnecessary stampfile indirection Fixes an issue with the command sequence used by buildbot Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
f798776188
commit
2990a21058
2
Makefile
2
Makefile
@ -41,7 +41,7 @@ else
|
|||||||
|
|
||||||
$(toolchain/stamp-compile): $(tools/stamp-compile)
|
$(toolchain/stamp-compile): $(tools/stamp-compile)
|
||||||
$(target/stamp-compile): $(toolchain/stamp-compile) $(tools/stamp-compile) $(BUILD_DIR)/.prepared
|
$(target/stamp-compile): $(toolchain/stamp-compile) $(tools/stamp-compile) $(BUILD_DIR)/.prepared
|
||||||
$(package/stamp-compile): $(target/stamp-compile) $(package/stamp-cleanup)
|
$(package/stamp-compile): $(target/stamp-compile)
|
||||||
$(package/stamp-install): $(package/stamp-compile)
|
$(package/stamp-install): $(package/stamp-compile)
|
||||||
$(target/stamp-install): $(package/stamp-compile) $(package/stamp-install)
|
$(target/stamp-install): $(package/stamp-compile) $(package/stamp-install)
|
||||||
check: $(tools/stamp-check) $(toolchain/stamp-check) $(package/stamp-check)
|
check: $(tools/stamp-check) $(toolchain/stamp-check) $(package/stamp-check)
|
||||||
|
@ -49,6 +49,8 @@ PACKAGE_INSTALL_FILES:= \
|
|||||||
$(curdir)/cleanup: $(TMP_DIR)/.build
|
$(curdir)/cleanup: $(TMP_DIR)/.build
|
||||||
rm -rf $(STAGING_DIR_ROOT)
|
rm -rf $(STAGING_DIR_ROOT)
|
||||||
|
|
||||||
|
$(curdir)/compile: $(curdir)/cleanup
|
||||||
|
|
||||||
$(curdir)/merge:
|
$(curdir)/merge:
|
||||||
rm -rf $(PACKAGE_DIR_ALL)
|
rm -rf $(PACKAGE_DIR_ALL)
|
||||||
mkdir -p $(PACKAGE_DIR_ALL)
|
mkdir -p $(PACKAGE_DIR_ALL)
|
||||||
@ -98,7 +100,6 @@ $(curdir)/preconfig:
|
|||||||
$(curdir)/flags-install:= -j1
|
$(curdir)/flags-install:= -j1
|
||||||
|
|
||||||
$(eval $(call stampfile,$(curdir),package,prereq,.config))
|
$(eval $(call stampfile,$(curdir),package,prereq,.config))
|
||||||
$(eval $(call stampfile,$(curdir),package,cleanup,$(TMP_DIR)/.build))
|
|
||||||
$(eval $(call stampfile,$(curdir),package,compile,$(TMP_DIR)/.build))
|
$(eval $(call stampfile,$(curdir),package,compile,$(TMP_DIR)/.build))
|
||||||
$(eval $(call stampfile,$(curdir),package,install,$(TMP_DIR)/.build))
|
$(eval $(call stampfile,$(curdir),package,install,$(TMP_DIR)/.build))
|
||||||
$(eval $(call stampfile,$(curdir),package,check,$(TMP_DIR)/.build))
|
$(eval $(call stampfile,$(curdir),package,check,$(TMP_DIR)/.build))
|
||||||
|
Loading…
Reference in New Issue
Block a user