diff options
| author | Carl Dong <[email protected]> | 2020-04-29 16:32:20 -0400 |
|---|---|---|
| committer | Carl Dong <[email protected]> | 2020-05-27 17:39:48 -0400 |
| commit | 2d4e48081382a58033ed5c3734a4ad810b56a963 (patch) | |
| tree | 630beebb666d36def041326939c8fae4a2516a34 | |
| parent | depends: Propagate well-known vars into depends (diff) | |
| download | discoin-2d4e48081382a58033ed5c3734a4ad810b56a963.tar.xz discoin-2d4e48081382a58033ed5c3734a4ad810b56a963.zip | |
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
| -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 970c81041..6605c1c6c 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 |