boost: ignore site config during host build
Without this, the host build picks up the site config in /usr/share/boost-build/site-config.jam which causes a build failure on Gentoo where a custom optimization value "none" is used. Fixes #9152. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
This commit is contained in:
parent
985a8a3f8c
commit
7766b0b878
1 changed files with 1 additions and 1 deletions
|
@ -384,7 +384,7 @@ define Host/Compile
|
||||||
headers \
|
headers \
|
||||||
$(foreach lib,$(BOOST_LIBS), \
|
$(foreach lib,$(BOOST_LIBS), \
|
||||||
$(if $(findstring python,$(lib)),,$(if $(CONFIG_boost-host-build-$(lib)),$(lib)))))) ; \
|
$(if $(findstring python,$(lib)),,$(if $(CONFIG_boost-host-build-$(lib)),$(lib)))))) ; \
|
||||||
./b2 install )
|
./b2 --ignore-site-config install )
|
||||||
endef
|
endef
|
||||||
|
|
||||||
CONFIGURE_PREFIX:=$(PKG_INSTALL_DIR)
|
CONFIGURE_PREFIX:=$(PKG_INSTALL_DIR)
|
||||||
|
|
Loading…
Reference in a new issue