summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2017-11-02 02:16:43 -0500
committerMassimiliano Culpo <massimiliano.culpo@googlemail.com>2017-11-02 08:16:43 +0100
commite47ceefc433da2f7d8373b8f7e3dbb23f093adb3 (patch)
tree0e0d32a3a35f3dcada3bd3906097dd1754e281af
parent11ba60413b50ffd40546ab20349616d0c24e7f13 (diff)
downloadspack-e47ceefc433da2f7d8373b8f7e3dbb23f093adb3.tar.gz
spack-e47ceefc433da2f7d8373b8f7e3dbb23f093adb3.tar.bz2
spack-e47ceefc433da2f7d8373b8f7e3dbb23f093adb3.tar.xz
spack-e47ceefc433da2f7d8373b8f7e3dbb23f093adb3.zip
sundials+hypre depends on hypre (#6075)
-rw-r--r--var/spack/repos/builtin/packages/sundials/package.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/sundials/package.py b/var/spack/repos/builtin/packages/sundials/package.py
index 2552eee652..57165e8f5d 100644
--- a/var/spack/repos/builtin/packages/sundials/package.py
+++ b/var/spack/repos/builtin/packages/sundials/package.py
@@ -183,8 +183,10 @@ class Sundials(CMakePackage):
depends_on('petsc+double~complex', when='+petsc precision=double')
# Require that external libraries built with the same index type
+ depends_on('hypre', when='+hypre')
depends_on('hypre~int64', when='+hypre ~int64')
depends_on('hypre+int64', when='+hypre +int64')
+ depends_on('petsc', when='+petsc')
depends_on('petsc~int64', when='+petsc ~int64')
depends_on('petsc+int64', when='+petsc +int64')