diff options
author | Felix Fietkau <nbd@nbd.name> | 2017-05-03 15:01:03 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2017-05-25 19:01:07 +0200 |
commit | f62f4b3c5c9d059a2e6a1e80ce7b4267ef0c236b (patch) | |
tree | 96563a32e7c0f1b7d96bae85defb7f17bae626ec /include/toolchain-build.mk | |
parent | a76cbc0d7ec2a816682063bdc18d114ec0711113 (diff) | |
download | upstream-f62f4b3c5c9d059a2e6a1e80ce7b4267ef0c236b.tar.gz upstream-f62f4b3c5c9d059a2e6a1e80ce7b4267ef0c236b.tar.bz2 upstream-f62f4b3c5c9d059a2e6a1e80ce7b4267ef0c236b.zip |
build: stop overriding STAGING_DIR_HOST for toolchain build
This causes various issues in other places that assume that host
binaries are staged in STAGING_DIR_HOST.
Since all the right places use HOST_BUILD_PREFIX, override that instead.
This fixes some issues with quilt on toolchain dirs
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'include/toolchain-build.mk')
-rw-r--r-- | include/toolchain-build.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/toolchain-build.mk b/include/toolchain-build.mk index efc35e2789..883d74d25c 100644 --- a/include/toolchain-build.mk +++ b/include/toolchain-build.mk @@ -8,8 +8,7 @@ override CONFIG_AUTOREBUILD= override CONFIG_AUTOREMOVE= -REAL_STAGING_DIR_HOST:=$(STAGING_DIR_HOST) -STAGING_DIR_HOST:=$(TOOLCHAIN_DIR) +HOST_BUILD_PREFIX:=$(TOOLCHAIN_DIR) BUILD_DIR_HOST:=$(BUILD_DIR_TOOLCHAIN) include $(INCLUDE_DIR)/host-build.mk |