From: nbd Date: Fri, 2 Jun 2006 16:12:05 +0000 (+0000) Subject: store stamp file for 'development headers installed' in the staging dir instead of... X-Git-Url: https://git.rohieb.name/openwrt.git/commitdiff_plain/142699180ce17b25851192e27bc89658746c9c5e store stamp file for 'development headers installed' in the staging dir instead of the package dir git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3895 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/rules.mk b/package/rules.mk index 79c2b3460..1fd6f2a8a 100644 --- a/package/rules.mk +++ b/package/rules.mk @@ -29,17 +29,18 @@ define Build/DefaultTargets $(call Build/Compile) touch $$@ - $(PKG_BUILD_DIR)/.dev-installed: $(PKG_BUILD_DIR)/.built + $(STAGING_DIR)/stampfiles/.$(PKG_NAME)-installed: $(PKG_BUILD_DIR)/.built $(call Build/InstallDev) touch $$@ ifdef Build/InstallDev - compile-targets: $(PKG_BUILD_DIR)/.dev-installed + compile-targets: $(STAGING_DIR)/stampfiles/.$(PKG_NAME)-installed endif package-clean: FORCE $(call Build/Clean) $(call Build/UninstallDev) + rm -f $(STAGING_DIR)/stampfiles/.$(PKG_NAME)-installed package-rebuild: FORCE @-rm $(PKG_BUILD_DIR)/.built