diff options
author | Seth R. Johnson <johnsonsr@ornl.gov> | 2022-03-14 04:39:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-14 09:39:35 +0100 |
commit | a4f9d4fa4a9e3c2635d56f6564b4731747b3dab1 (patch) | |
tree | 983b0c92b1da4e55a023f90986994d75151d7c0d /var | |
parent | 32281ee40ef0b6ae3a067fd24fdefae4f27e0b8a (diff) | |
download | spack-a4f9d4fa4a9e3c2635d56f6564b4731747b3dab1.tar.gz spack-a4f9d4fa4a9e3c2635d56f6564b4731747b3dab1.tar.bz2 spack-a4f9d4fa4a9e3c2635d56f6564b4731747b3dab1.tar.xz spack-a4f9d4fa4a9e3c2635d56f6564b4731747b3dab1.zip |
hdf5: relax fortran constraint (#29472)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/hdf5/package.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/hdf5/package.py b/var/spack/repos/builtin/packages/hdf5/package.py index 409e427345..df8ccda37f 100644 --- a/var/spack/repos/builtin/packages/hdf5/package.py +++ b/var/spack/repos/builtin/packages/hdf5/package.py @@ -108,8 +108,8 @@ class Hdf5(CMakePackage): conflicts('+java', when='@:1.9') # The Java wrappers cannot be built without shared libs. conflicts('+java', when='~shared') - # Fortran cannot be built with shared - conflicts('+fortran', when='+shared@:1.8') + # Fortran fails built with shared for old HDF5 versions + conflicts('+fortran', when='+shared@:1.8.15') # There are several officially unsupported combinations of the features: # 1. Thread safety is not guaranteed via high-level C-API but in some cases |