From 7064a849ce3342428c8e120e225b6b45c58e95cd Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Thu, 6 Oct 2016 00:02:21 +0200 Subject: [PATCH] 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 --- include/host-build.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.30.2