diff options
author | Chien-Chang Feng <jasonfenglu@users.noreply.github.com> | 2017-12-04 15:50:35 +0900 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2017-12-04 07:50:35 +0100 |
commit | f564e0230196936fb4313ea531b4b349ad754368 (patch) | |
tree | 982a32ca02c36c6c8678074c69901f984f21716c | |
parent | 688710777559ed0787c6755855c3ec640ed96888 (diff) | |
download | spack-f564e0230196936fb4313ea531b4b349ad754368.tar.gz spack-f564e0230196936fb4313ea531b4b349ad754368.tar.bz2 spack-f564e0230196936fb4313ea531b4b349ad754368.tar.xz spack-f564e0230196936fb4313ea531b4b349ad754368.zip |
py-h5py: fixed a typo in the name of a dependency (#6540)
-rw-r--r-- | var/spack/repos/builtin/packages/py-h5py/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-h5py/package.py b/var/spack/repos/builtin/packages/py-h5py/package.py index a5c1f6619c..3375b762a9 100644 --- a/var/spack/repos/builtin/packages/py-h5py/package.py +++ b/var/spack/repos/builtin/packages/py-h5py/package.py @@ -40,7 +40,7 @@ class PyH5py(PythonPackage): # Build dependencies depends_on('py-cython@0.19:', type='build') - depends_on('py-pkgconfigig', type='build') + depends_on('py-pkgconfig', type='build') depends_on('py-setuptools', type='build') depends_on('hdf5@1.8.4:+hl') depends_on('hdf5+mpi', when='+mpi') |