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.
This commit is contained in:
Jack Grigg 2022-07-08 22:43:16 +00:00
parent 5d52d60477
commit 609fad8ad0
1 changed files with 1 additions and 1 deletions

View File

@ -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