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:
parent
b12d5aecaa
commit
0a80d94a46
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user