diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-03-09 01:15:59 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-03-09 01:15:59 +0000 |
commit | b6f0cb53669e8b96fd15e6913faf1697f602a6b8 (patch) | |
tree | e4d070cc362de422bf7ae7438eff02bb06d875c3 /include | |
parent | 28f3acc0317a622b084814f65b523e6f5ba234d5 (diff) | |
download | upstream-b6f0cb53669e8b96fd15e6913faf1697f602a6b8.tar.gz upstream-b6f0cb53669e8b96fd15e6913faf1697f602a6b8.tar.bz2 upstream-b6f0cb53669e8b96fd15e6913faf1697f602a6b8.zip |
prepend $(STAGING_DIR)/host to the PATH only in target-package stampfile targets, should fix usage of cross tools with host builds
SVN-Revision: 14800
Diffstat (limited to 'include')
-rw-r--r-- | include/package.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/package.mk b/include/package.mk index e33814e77d..8083632684 100644 --- a/include/package.mk +++ b/include/package.mk @@ -69,6 +69,7 @@ define Build/DefaultTargets $(if $(strip $(PKG_SOURCE_URL)),$(call Download,default)) $(call Build/Autoclean) + $(STAMP_PREPARED) : export PATH=$$(TARGET_PATH_PKG) $(STAMP_PREPARED): @-rm -rf $(PKG_BUILD_DIR) @mkdir -p $(PKG_BUILD_DIR) @@ -77,12 +78,14 @@ define Build/DefaultTargets $(foreach hook,$(Hooks/Prepare/Post),$(call $(hook))$(sep)) touch $$@ + $(STAMP_CONFIGURED) : export PATH=$$(TARGET_PATH_PKG) $(STAMP_CONFIGURED): $(STAMP_PREPARED) $(HOST_STAMP_INSTALLED) $(foreach hook,$(Hooks/Configure/Pre),$(call $(hook))$(sep)) $(Build/Configure) $(foreach hook,$(Hooks/Configure/Post),$(call $(hook))$(sep)) touch $$@ + $(STAMP_BUILT) : export PATH=$$(TARGET_PATH_PKG) $(STAMP_BUILT): $(STAMP_CONFIGURED) $(foreach hook,$(Hooks/Compile/Pre),$(call $(hook))$(sep)) $(Build/Compile) @@ -91,6 +94,7 @@ define Build/DefaultTargets $(foreach hook,$(Hooks/Install/Post),$(call $(hook))$(sep)) touch $$@ + $(STAMP_INSTALLED) : export PATH=$$(TARGET_PATH_PKG) $(STAMP_INSTALLED): $(STAMP_BUILT) $(SUBMAKE) -j1 clean-staging rm -rf $(TMP_DIR)/stage-$(PKG_NAME) |