summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/hdf5/package.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/hdf5/package.py b/var/spack/repos/builtin/packages/hdf5/package.py
index 3fc978e725..50ad30222f 100644
--- a/var/spack/repos/builtin/packages/hdf5/package.py
+++ b/var/spack/repos/builtin/packages/hdf5/package.py
@@ -79,11 +79,11 @@ class Hdf5(AutotoolsPackage):
@property
def libs(self):
- """Hdf5 can be queried for the following parameters:
+ """HDF5 can be queried for the following parameters:
- "hl": high-level interface
- "cxx": C++ APIs
- - "fortran": fortran APIs
+ - "fortran": Fortran APIs
:return: list of matching libraries
"""
@@ -144,7 +144,7 @@ class Hdf5(AutotoolsPackage):
def fortran_check(self):
spec = self.spec
if '+fortran' in spec and not self.compiler.fc:
- msg = 'cannot build a fortran variant without a fortran compiler'
+ msg = 'cannot build a Fortran variant without a Fortran compiler'
raise RuntimeError(msg)
def configure_args(self):