cbtf-krell: fix missing dependencies (#14021)

This commit is contained in:
Adam J. Stewart 2019-12-08 15:51:04 -06:00 committed by GitHub
parent 2266aab5c5
commit aa8d5d2e8c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -100,10 +100,10 @@ class CbtfKrell(CMakePackage):
# MPI Installations # MPI Installations
depends_on("openmpi", when='+openmpi') depends_on("openmpi", when='+openmpi')
depends_on("mpich", when='+mpich') depends_on("mpich@:1", when='+mpich')
depends_on("mpich2", when='+mpich2') depends_on("mpich@2:", when='+mpich2')
depends_on("mvapich2", when='+mvapich2') depends_on("mvapich2@2:", when='+mvapich2')
depends_on("mvapich", when='+mvapich') depends_on("mvapich2@:1", when='+mvapich')
depends_on("mpt", when='+mpt') depends_on("mpt", when='+mpt')
depends_on("python", when='@develop', type=('build', 'run')) depends_on("python", when='@develop', type=('build', 'run'))