Skip to content

Commit

Permalink
BUILD: Add '--ignore-site-config' for boost build recipe.
Browse files Browse the repository at this point in the history
Distros like gentoo/funtoo define one, which inteferes with and breaks our builds.
NB! Double check that this doesn't break mingw builds on mingw branch.
  • Loading branch information
mjmacleod committed Jun 1, 2019
1 parent 6161041 commit 3968002
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions depends/packages/boost.mk
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ define $(package)_config_cmds
endef

define $(package)_build_cmds
./b2 -d2 -j2 -d1 --prefix=$($(package)_staging_prefix_dir) $($(package)_config_opts) stage
./b2 --ignore-site-config -d2 -j2 -d1 --prefix=$($(package)_staging_prefix_dir) $($(package)_config_opts) stage
endef

define $(package)_stage_cmds
./b2 -d0 -j4 --prefix=$($(package)_staging_prefix_dir) $($(package)_config_opts) install
./b2 --ignore-site-config -d0 -j4 --prefix=$($(package)_staging_prefix_dir) $($(package)_config_opts) install
endef

0 comments on commit 3968002

Please sign in to comment.