diff options
author | Michael Kuhn <michael.kuhn@ovgu.de> | 2022-05-16 22:01:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-16 14:01:41 -0600 |
commit | 6034b5afc2304e1c64ec3986d3e3f1547142d657 (patch) | |
tree | 0a4cda3b0ac2e6896fdf9b9621d8eb0e6298e9bd /var | |
parent | 17bc93708300785a360f8e4615d3550dcb400cd6 (diff) | |
download | spack-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.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/chameleon/package.py | 2 | ||||
-rw-r--r-- | var/spack/repos/builtin/packages/starpu/package.py | 2 |
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') |