diff options
author | healther <healther@users.noreply.github.com> | 2017-08-18 20:19:55 +0200 |
---|---|---|
committer | scheibelp <scheibel1@llnl.gov> | 2017-08-18 11:19:55 -0700 |
commit | 6d155833c5a9f6c55e58d56e4aec09eb32fe1839 (patch) | |
tree | 3a799800acb9edb54e1df49ef08e540ed2f0ce0c | |
parent | 9ad8e793327efb3436428bff26fda81640b33d9e (diff) | |
download | spack-6d155833c5a9f6c55e58d56e4aec09eb32fe1839.tar.gz spack-6d155833c5a9f6c55e58d56e4aec09eb32fe1839.tar.bz2 spack-6d155833c5a9f6c55e58d56e4aec09eb32fe1839.tar.xz spack-6d155833c5a9f6c55e58d56e4aec09eb32fe1839.zip |
build boost with graph library even when +mpi
Previously, when +graph and +mpi were enabled, the graph library
was replaced with the graph_parallel library. This alters the
logic for +graph+mpi to build both libraries.
-rw-r--r-- | var/spack/repos/builtin/packages/boost/package.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/boost/package.py b/var/spack/repos/builtin/packages/boost/package.py index fc3b967fd1..93362cadf6 100644 --- a/var/spack/repos/builtin/packages/boost/package.py +++ b/var/spack/repos/builtin/packages/boost/package.py @@ -324,7 +324,6 @@ class Boost(Package): if not spec.satisfies('@1.43.0:'): withLibs.remove('random') if '+graph' in spec and '+mpi' in spec: - withLibs.remove('graph') withLibs.append('graph_parallel') # to make Boost find the user-config.jam |