diff options
author | Carl Dong <contact@carldong.me> | 2020-04-29 16:32:20 -0400 |
---|---|---|
committer | Carl Dong <contact@carldong.me> | 2020-05-27 17:39:48 -0400 |
commit | 2d4e48081382a58033ed5c3734a4ad810b56a963 (patch) | |
tree | 630beebb666d36def041326939c8fae4a2516a34 /depends/packages/boost.mk | |
parent | 3d6603e340d6d461832f0aa204b04343d34af3d4 (diff) |
depends: boost: Specify toolset to bootstrap.sh
b2 will pickup our user-config.jam just fine, however, bootstrap.sh has
its own toolset autodetect mechanism, which doesn't GAF about our
user-config.jam
Diffstat (limited to 'depends/packages/boost.mk')
-rw-r--r-- | depends/packages/boost.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/depends/packages/boost.mk b/depends/packages/boost.mk index 970c81041e..6605c1c6ca 100644 --- a/depends/packages/boost.mk +++ b/depends/packages/boost.mk @@ -33,7 +33,7 @@ define $(package)_preprocess_cmds endef define $(package)_config_cmds - ./bootstrap.sh --without-icu --with-libraries=$($(package)_config_libraries) + ./bootstrap.sh --without-icu --with-libraries=$($(package)_config_libraries) --with-toolset=$($(package)_toolset_$(host_os)) endef define $(package)_build_cmds |