diff options
author | Jo-Philipp Wich <jo@mein.io> | 2016-11-01 12:09:30 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2016-11-01 12:11:14 +0100 |
commit | b7f7e9fe424bc80bf89d3ebb18adcac412e4047f (patch) | |
tree | 42dc688d48140d185c292100e917d0036a4ae137 /include | |
parent | d7bec5609c6e7408726f455c97d82b2b99d9ef19 (diff) | |
download | upstream-b7f7e9fe424bc80bf89d3ebb18adcac412e4047f.tar.gz upstream-b7f7e9fe424bc80bf89d3ebb18adcac412e4047f.tar.bz2 upstream-b7f7e9fe424bc80bf89d3ebb18adcac412e4047f.zip |
include/host-build.mk: use STAGING_DIR_HOSTPKG
Instead of hardcoding $(STAGING_DIR)/host, use the new $(STAGING_DIR_HOSTPKG)
variable to refer to the directory.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'include')
-rw-r--r-- | include/host-build.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/host-build.mk b/include/host-build.mk index 56e0e4e413..d353c88b5c 100644 --- a/include/host-build.mk +++ b/include/host-build.mk @@ -30,7 +30,7 @@ BUILD_TYPES += host HOST_STAMP_PREPARED=$(HOST_BUILD_DIR)/.prepared$(if $(HOST_QUILT)$(DUMP),,$(shell $(call find_md5,${CURDIR} $(PKG_FILE_DEPENDS),))) HOST_STAMP_CONFIGURED:=$(HOST_BUILD_DIR)/.configured HOST_STAMP_BUILT:=$(HOST_BUILD_DIR)/.built -HOST_BUILD_PREFIX:=$(if $(IS_PACKAGE_BUILD),$(STAGING_DIR)/host,$(STAGING_DIR_HOST)) +HOST_BUILD_PREFIX:=$(if $(IS_PACKAGE_BUILD),$(STAGING_DIR_HOSTPKG),$(STAGING_DIR_HOST)) HOST_STAMP_INSTALLED:=$(HOST_BUILD_PREFIX)/stamp/.$(PKG_NAME)_installed override MAKEFLAGS= |