summaryrefslogtreecommitdiff
path: root/var/spack/repos
diff options
context:
space:
mode:
authordorier <dorier@users.noreply.github.com>2018-10-27 03:01:39 +0100
committerPeter Scheibel <scheibel1@llnl.gov>2018-10-26 19:01:39 -0700
commit13e5c3fbe23e3f57503064bf2c3d7c0a3713101a (patch)
tree67bfe995c4a8b7b5b1a672e6c48aaf5469756e70 /var/spack/repos
parentc3ffd4e1cf4504d193e1e7eec5fed65a95cda611 (diff)
downloadspack-13e5c3fbe23e3f57503064bf2c3d7c0a3713101a.tar.gz
spack-13e5c3fbe23e3f57503064bf2c3d7c0a3713101a.tar.bz2
spack-13e5c3fbe23e3f57503064bf2c3d7c0a3713101a.tar.xz
spack-13e5c3fbe23e3f57503064bf2c3d7c0a3713101a.zip
VisIt: build vtk without mpi support (#9649)
VisIt cannot use VTK built with mpi support (which was enabled by default starting in #9494)
Diffstat (limited to 'var/spack/repos')
-rw-r--r--var/spack/repos/builtin/packages/visit/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/visit/package.py b/var/spack/repos/builtin/packages/visit/package.py
index 4de0294f43..47d93c3a7b 100644
--- a/var/spack/repos/builtin/packages/visit/package.py
+++ b/var/spack/repos/builtin/packages/visit/package.py
@@ -26,7 +26,7 @@ class Visit(CMakePackage):
variant('mpi', default=True, description='Enable parallel engine')
depends_on('cmake@3.0:', type='build')
- depends_on('vtk@6.1.0~opengl2')
+ depends_on('vtk@6.1.0~opengl2~mpi')
depends_on('qt@4.8.6', when='+gui')
depends_on('qwt', when='+gui')
depends_on('python', when='+python')