fix pkgconfig dependencies (#30688)

pkgconfig is the correct dependency, pkg-config is a provider of it.
This commit is contained in:
Michael Kuhn 2022-05-16 22:01:41 +02:00 committed by GitHub
parent 17bc937083
commit 6034b5afc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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")

View File

@ -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')