From: Matthias Schiffer Date: Wed, 5 Oct 2016 22:02:21 +0000 (+0200) Subject: include/host-build.mk: pass HOST_BUILD_PREFIX to Host/install X-Git-Tag: v17.01.0-rc1~1249 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=7064a849ce3342428c8e120e225b6b45c58e95cd include/host-build.mk: pass HOST_BUILD_PREFIX to Host/install Using HOST_BUILD_PREFIX instead of STAGING_DIR_HOST will make the argument work as expected from packages. Nothing changes for tools, for which HOST_BUILD_PREFIX and STAGING_DIR_HOST are equivalent. Signed-off-by: Matthias Schiffer --- diff --git a/include/host-build.mk b/include/host-build.mk index 659cdc4837..0b10c7cdf9 100644 --- a/include/host-build.mk +++ b/include/host-build.mk @@ -111,7 +111,7 @@ define Host/Install/Default endef define Host/Install - $(call Host/Install/Default,$(STAGING_DIR_HOST)) + $(call Host/Install/Default,$(HOST_BUILD_PREFIX)) endef @@ -173,7 +173,7 @@ ifndef DUMP touch $$@ $(HOST_STAMP_INSTALLED): $(HOST_STAMP_BUILT) $(if $(FORCE_HOST_INSTALL),FORCE) - $(call Host/Install,$(STAGING_DIR_HOST)) + $(call Host/Install,$(HOST_BUILD_PREFIX)) $(foreach hook,$(Hooks/HostInstall/Post),$(call $(hook))$(sep)) mkdir -p $$(shell dirname $$@) touch $(HOST_STAMP_BUILT)