summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorMichael Kuhn <michael.kuhn@informatik.uni-hamburg.de>2019-05-15 12:18:16 +0200
committerMassimiliano Culpo <massimiliano.culpo@gmail.com>2019-05-15 12:18:16 +0200
commit58c5442d6203ce2a507fcfe2bdd4ecb00ddc3f17 (patch)
treea888e98cce3ed6a52f53b37848c6d6ad95193a65 /var
parent54d56db1f19533439e7c01d63e22b514dea07e09 (diff)
downloadspack-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.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/kitty/package.py2
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')