Add fix for bug causing MACSio build failure when hdf5 or typhonio enabled (#8722)

* Add fix for bug causing build failure when hdf5 enabled

* Added correct hdf5 dependency to typhonio
This commit is contained in:
James Dickson 2018-07-17 14:24:16 +01:00 committed by Adam J. Stewart
parent b12d5aecaa
commit 0a80d94a46
2 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ class Macsio(CMakePackage):
depends_on('json-cwx') depends_on('json-cwx')
depends_on('mpi', when="+mpi") depends_on('mpi', when="+mpi")
depends_on('silo', when="+silo") depends_on('silo', when="+silo")
depends_on('hdf5', when="+hdf5") depends_on('hdf5+hl', when="+hdf5")
# depends_on('hdf5+szip', when="+szip") # depends_on('hdf5+szip', when="+szip")
depends_on('exodusii', when="+exodus") depends_on('exodusii', when="+exodus")
# pdb is packaged with silo # pdb is packaged with silo

View File

@ -43,7 +43,7 @@ class Typhonio(CMakePackage):
variant('doc', default=False, description='Build user guide and doxygen documentation') variant('doc', default=False, description='Build user guide and doxygen documentation')
depends_on('mpi') depends_on('mpi')
depends_on('hdf5') depends_on('hdf5+hl')
def cmake_args(self): def cmake_args(self):
spec = self.spec spec = self.spec