diff options
author | eugeneswalker <38933153+eugeneswalker@users.noreply.github.com> | 2020-11-13 10:12:02 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-13 10:12:02 -0800 |
commit | 3a3bf5387e3b4f0830957ad37eae591c49b587ba (patch) | |
tree | 6ea56b65d7297cc4add20e462bc74014ead69b5b /var | |
parent | b08744566d28697db363a87a24671f81528e3dc1 (diff) | |
download | spack-3a3bf5387e3b4f0830957ad37eae591c49b587ba.tar.gz spack-3a3bf5387e3b4f0830957ad37eae591c49b587ba.tar.bz2 spack-3a3bf5387e3b4f0830957ad37eae591c49b587ba.tar.xz spack-3a3bf5387e3b4f0830957ad37eae591c49b587ba.zip |
suite-sparse: mpfr, gmp needed for @5.8.0: (#19898)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/suite-sparse/package.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/suite-sparse/package.py b/var/spack/repos/builtin/packages/suite-sparse/package.py index 5e47d89493..0c75d8394f 100644 --- a/var/spack/repos/builtin/packages/suite-sparse/package.py +++ b/var/spack/repos/builtin/packages/suite-sparse/package.py @@ -35,8 +35,8 @@ class SuiteSparse(Package): variant('cuda', default=False, description='Build with CUDA') variant('openmp', default=False, description='Build with OpenMP') - depends_on('mpfr', type=('build', 'link')) - depends_on('gmp', type=('build', 'link')) + depends_on('mpfr', type=('build', 'link'), when='@5.8.0:') + depends_on('gmp', type=('build', 'link'), when='@5.8.0:') depends_on('blas') depends_on('lapack') depends_on('m4', type='build', when='@5.0.0:') |