diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-11-20 22:43:38 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-11-20 22:43:38 +0000 |
commit | 06cdcfdbfdad3bd40657a5edda9962a1eae415b4 (patch) | |
tree | 38e509b4331a41d9e4bd41d4a6b4ac791d7260dc /include | |
parent | 5a9cf90163c2240f284150aaa9ee76f769cb704c (diff) | |
download | upstream-06cdcfdbfdad3bd40657a5edda9962a1eae415b4.tar.gz upstream-06cdcfdbfdad3bd40657a5edda9962a1eae415b4.tar.bz2 upstream-06cdcfdbfdad3bd40657a5edda9962a1eae415b4.zip |
fix build issues that happen when the staging dir is cleared and the build directories stay
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9588 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r-- | include/package.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/package.mk b/include/package.mk index 049d5befef..83c3025de2 100644 --- a/include/package.mk +++ b/include/package.mk @@ -19,6 +19,7 @@ include $(INCLUDE_DIR)/depends.mk STAMP_PREPARED=$(PKG_BUILD_DIR)/.prepared$(if $(QUILT)$(DUMP),,_$(shell $(call find_md5,${CURDIR} $(PKG_FILE_DEPEND),))) STAMP_CONFIGURED:=$(PKG_BUILD_DIR)/.configured STAMP_BUILT:=$(PKG_BUILD_DIR)/.built +STAMP_INSTALLED:=$(STAGING_DIR)/stamp/.$(PKG_NAME)_installed include $(INCLUDE_DIR)/download.mk include $(INCLUDE_DIR)/quilt.mk @@ -66,11 +67,14 @@ define Build/DefaultTargets $(STAMP_BUILT): $(STAMP_CONFIGURED) $(Build/Compile) + touch $$@ + + $(STAMP_INSTALLED): $(STAMP_BUILT) $(call Build/InstallDev,$(STAGING_DIR)) touch $$@ ifdef Build/InstallDev - compile: $(STAMP_BUILT) + compile: $(STAMP_INSTALLED) endif define Build/DefaultTargets |