diff options
author | Michael Kuhn <michael.kuhn@informatik.uni-hamburg.de> | 2019-05-15 12:18:16 +0200 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2019-05-15 12:18:16 +0200 |
commit | 58c5442d6203ce2a507fcfe2bdd4ecb00ddc3f17 (patch) | |
tree | a888e98cce3ed6a52f53b37848c6d6ad95193a65 | |
parent | 54d56db1f19533439e7c01d63e22b514dea07e09 (diff) | |
download | spack-58c5442d6203ce2a507fcfe2bdd4ecb00ddc3f17.tar.gz spack-58c5442d6203ce2a507fcfe2bdd4ecb00ddc3f17.tar.bz2 spack-58c5442d6203ce2a507fcfe2bdd4ecb00ddc3f17.tar.xz spack-58c5442d6203ce2a507fcfe2bdd4ecb00ddc3f17.zip |
kitty: Fix pkgconfig dependency (#11465)
pkgconfig is the correct virtual dependency while pkg-config is a
specific implementation.
-rw-r--r-- | var/spack/repos/builtin/packages/kitty/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/kitty/package.py b/var/spack/repos/builtin/packages/kitty/package.py index d410c9c912..0a5e12df13 100644 --- a/var/spack/repos/builtin/packages/kitty/package.py +++ b/var/spack/repos/builtin/packages/kitty/package.py @@ -33,7 +33,7 @@ class Kitty(PythonPackage): depends_on('zlib') depends_on('libpng') depends_on('gl', type=('build', 'link', 'run')) - depends_on('pkg-config', type='build') + depends_on('pkgconfig', type='build') depends_on('py-setuptools', type='build') depends_on('py-sphinx', type='build') depends_on('freetype', when=sys.platform != 'darwin') |