From 83acc2352b626aae81ee4764aff6369483ce1fb0 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Fri, 2 Jun 2006 16:12:05 +0000 Subject: [PATCH 1/1] store stamp file for 'development headers installed' in the staging dir instead of the package dir SVN-Revision: 3895 --- openwrt/package/rules.mk | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 -- 2.30.2