diff options
author | Felix Fietkau <nbd@nbd.name> | 2016-08-23 10:58:00 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2016-08-23 11:56:13 +0200 |
commit | 4170267f5a794eb3fa6bb1718a665e3395077434 (patch) | |
tree | 42f37a96936bb93a95510a15b748252c39239354 /include | |
parent | 4c451ae0a7bd9d36f9bb213b1e63892703143c33 (diff) | |
download | upstream-4170267f5a794eb3fa6bb1718a665e3395077434.tar.gz upstream-4170267f5a794eb3fa6bb1718a665e3395077434.tar.bz2 upstream-4170267f5a794eb3fa6bb1718a665e3395077434.zip |
build: pass $(STAGING_DIR_HOST) to Host/Install
makes it more consistent with package builds
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'include')
-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 a494ceddf3..659cdc4837 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) + $(call Host/Install/Default,$(STAGING_DIR_HOST)) endef @@ -173,7 +173,7 @@ ifndef DUMP touch $$@ $(HOST_STAMP_INSTALLED): $(HOST_STAMP_BUILT) $(if $(FORCE_HOST_INSTALL),FORCE) - $(call Host/Install) + $(call Host/Install,$(STAGING_DIR_HOST)) $(foreach hook,$(Hooks/HostInstall/Post),$(call $(hook))$(sep)) mkdir -p $$(shell dirname $$@) touch $(HOST_STAMP_BUILT) |