summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Kuhn <michael.kuhn@ovgu.de>2022-05-16 22:01:41 +0200
committerGitHub <noreply@github.com>2022-05-16 14:01:41 -0600
commit6034b5afc2304e1c64ec3986d3e3f1547142d657 (patch)
tree0a4cda3b0ac2e6896fdf9b9621d8eb0e6298e9bd
parent17bc93708300785a360f8e4615d3550dcb400cd6 (diff)
downloadspack-6034b5afc2304e1c64ec3986d3e3f1547142d657.tar.gz
spack-6034b5afc2304e1c64ec3986d3e3f1547142d657.tar.bz2
spack-6034b5afc2304e1c64ec3986d3e3f1547142d657.tar.xz
spack-6034b5afc2304e1c64ec3986d3e3f1547142d657.zip
fix pkgconfig dependencies (#30688)
pkgconfig is the correct dependency, pkg-config is a provider of it.
-rw-r--r--var/spack/repos/builtin/packages/chameleon/package.py2
-rw-r--r--var/spack/repos/builtin/packages/starpu/package.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/chameleon/package.py b/var/spack/repos/builtin/packages/chameleon/package.py
index 071bba3e76..c6f930ce50 100644
--- a/var/spack/repos/builtin/packages/chameleon/package.py
+++ b/var/spack/repos/builtin/packages/chameleon/package.py
@@ -28,7 +28,7 @@ class Chameleon(CMakePackage, CudaPackage):
variant('simgrid', default=False, when='runtime=starpu', description='Enable simulation mode through StarPU+SimGrid')
# dependencies
- depends_on("pkg-config", type='build')
+ depends_on("pkgconfig", type='build')
with when("runtime=starpu"):
depends_on("starpu")
diff --git a/var/spack/repos/builtin/packages/starpu/package.py b/var/spack/repos/builtin/packages/starpu/package.py
index 6f336c15e3..d823d6ae61 100644
--- a/var/spack/repos/builtin/packages/starpu/package.py
+++ b/var/spack/repos/builtin/packages/starpu/package.py
@@ -68,7 +68,7 @@ class Starpu(AutotoolsPackage):
variant('simgridmc', default=False, description='Enable SimGrid model checker support')
variant('examples', default=True, description='Enable Examples')
- depends_on("pkg-config", type='build')
+ depends_on("pkgconfig", type='build')
depends_on('autoconf', type='build')
depends_on('automake', type='build')
depends_on('libtool', type='build')