diff options
author | Michael Kuhn <michael@ikkoku.de> | 2019-03-26 19:36:54 +0100 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2019-03-26 13:36:54 -0500 |
commit | 63ddc44db62f455560eea0974b7ea429d76b041d (patch) | |
tree | f32012ff75d4b4df675921206bad5ae6fb2fb0f8 | |
parent | f08c9aa601a8f0c7bf1abda012bcb491a0f07391 (diff) | |
download | spack-63ddc44db62f455560eea0974b7ea429d76b041d.tar.gz spack-63ddc44db62f455560eea0974b7ea429d76b041d.tar.bz2 spack-63ddc44db62f455560eea0974b7ea429d76b041d.tar.xz spack-63ddc44db62f455560eea0974b7ea429d76b041d.zip |
ior package: Add patch to fix 3.2.0 with hdf5 (#10923)
-rw-r--r-- | var/spack/repos/builtin/packages/ior/package.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/ior/package.py b/var/spack/repos/builtin/packages/ior/package.py index bf408ed67f..3e37cbdb28 100644 --- a/var/spack/repos/builtin/packages/ior/package.py +++ b/var/spack/repos/builtin/packages/ior/package.py @@ -27,6 +27,12 @@ class Ior(AutotoolsPackage): depends_on('hdf5+mpi', when='+hdf5') depends_on('parallel-netcdf', when='+ncmpi') + # The build for 3.2.0 fails if hdf5 is enabled + # See https://github.com/hpc/ior/pull/124 + patch('https://github.com/hpc/ior/commit/1dbca5c293f95074f9887ddb2043fa984670fb4d.patch', + sha256='f28d6638a74a09e147e9fa870930e54a82ff580d1c232add47a67c375e255ada', + when='@3.2.0 +hdf5') + @run_before('autoreconf') def bootstrap(self): Executable('./bootstrap')() |