summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2016-02-01 11:46:33 -0500
committerBen Boeckel <ben.boeckel@kitware.com>2016-02-01 11:46:33 -0500
commit2b140b9a34852cbada6a3c1045b3b021d5eabeb8 (patch)
tree8bdc2c69e4d62be85e961f9f9896f3020bcbf9d5 /var
parent2ae6fd9d1ed0ab88cc00bca692908e1f3f5ce963 (diff)
downloadspack-2b140b9a34852cbada6a3c1045b3b021d5eabeb8.tar.gz
spack-2b140b9a34852cbada6a3c1045b3b021d5eabeb8.tar.bz2
spack-2b140b9a34852cbada6a3c1045b3b021d5eabeb8.tar.xz
spack-2b140b9a34852cbada6a3c1045b3b021d5eabeb8.zip
hdf5: default +unsupported to on
This flag can end up being required if a dependency tree ends up needing hdf5+cxx+parallel, but nothing turns it on. Since the core spack code puts this together, it ends up that the end user needs to specify it manually. Instead, just assume an unsupported configuration (since these *are* useful setups) and if anyone wants to seek upstream support, masking the flag can be done.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/hdf5/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/hdf5/package.py b/var/spack/repos/builtin/packages/hdf5/package.py
index 5321a191f0..80f79539c0 100644
--- a/var/spack/repos/builtin/packages/hdf5/package.py
+++ b/var/spack/repos/builtin/packages/hdf5/package.py
@@ -45,7 +45,7 @@ class Hdf5(Package):
variant('cxx', default=True, description='Enable C++ support')
variant('fortran', default=True, description='Enable Fortran support')
- variant('unsupported', default=False, description='Enables unsupported configuration options')
+ variant('unsupported', default=True, description='Enables unsupported configuration options')
variant('mpi', default=False, description='Enable MPI support')
variant('szip', default=False, description='Enable szip support')