From: Felix Fietkau 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: http://git.lede-project.org./?a=commitdiff_plain;h=83acc2352b626aae81ee4764aff6369483ce1fb0;p=openwrt%2Fstaging%2Fansuel.git store stamp file for 'development headers installed' in the staging dir instead of the package dir SVN-Revision: 3895 --- diff --git a/openwrt/package/rules.mk b/openwrt/package/rules.mk index 79c2b3460d..1fd6f2a8ab 100644 --- a/openwrt/package/rules.mk +++ b/openwrt/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