diff options
| author | Matthias Schiffer | 2016-10-05 22:02:21 +0000 |
|---|---|---|
| committer | Matthias Schiffer | 2016-10-05 22:19:18 +0000 |
| commit | 7064a849ce3342428c8e120e225b6b45c58e95cd (patch) | |
| tree | 20bbfdaaadc298ca5d96f868670d9a675b7275fb | |
| parent | 73c87a3cad3c77d581e46ef9707d175a0651351f (diff) | |
| download | openwrt-7064a849ce3342428c8e120e225b6b45c58e95cd.tar.gz | |
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 <mschiffer@universe-factory.net>
| -rw-r--r-- | include/host-build.mk | 4 |
1 files 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) |