From 609fad8ad031ac9b0160f9adcb18de41e68ae8cd Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Fri, 8 Jul 2022 22:43:16 +0000 Subject: [PATCH] depends: Force Boost library to be installed in lib/ On CentOS it was defaulting to lib64, which made the library path unpredictable for native_ccache. --- depends/packages/boost.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/depends/packages/boost.mk b/depends/packages/boost.mk index 20d0f37a4..2bf73ffc4 100644 --- a/depends/packages/boost.mk +++ b/depends/packages/boost.mk @@ -45,7 +45,7 @@ define $(package)_preprocess_cmds endef define $(package)_config_cmds - ./bootstrap.sh --without-icu --with-libraries=$($(package)_config_libraries) --with-toolset=$($(package)_toolset_$(host_os)) --with-bjam=b2 + ./bootstrap.sh --without-icu --with-libraries=$($(package)_config_libraries) --with-toolset=$($(package)_toolset_$(host_os)) --with-bjam=b2 --libdir=lib endef define $(package)_build_cmds