summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToyohisa Kameyama <kameyama@riken.jp>2021-03-20 10:52:38 +0900
committerGitHub <noreply@github.com>2021-03-20 01:52:38 +0000
commitb8815e577bd96978288fcc4990b5377029dc3195 (patch)
treeceb5546f05f6d6e5aa181331e6e320879a347726
parent187c23d3c59fac47b7a161268b093ff4a69b7312 (diff)
downloadspack-b8815e577bd96978288fcc4990b5377029dc3195.tar.gz
spack-b8815e577bd96978288fcc4990b5377029dc3195.tar.bz2
spack-b8815e577bd96978288fcc4990b5377029dc3195.tar.xz
spack-b8815e577bd96978288fcc4990b5377029dc3195.zip
boost: fixed detect system icu bug on version 1.65.0 or older. (#22375)
-rw-r--r--var/spack/repos/builtin/packages/boost/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/boost/package.py b/var/spack/repos/builtin/packages/boost/package.py
index 7aca0e8b8e..198c62abd9 100644
--- a/var/spack/repos/builtin/packages/boost/package.py
+++ b/var/spack/repos/builtin/packages/boost/package.py
@@ -545,7 +545,7 @@ class Boost(Package):
threading_opts = self.determine_b2_options(spec, b2_options)
- b2('--clean')
+ b2('--clean', *b2_options)
# In theory it could be done on one call but it fails on
# Boost.MPI if the threading options are not separated.