Fix pkgconfig dependencies (#39059)

pkg-config and pkgconf are providers.
This commit is contained in:
Michael Kuhn 2023-07-23 02:20:30 +02:00 committed by GitHub
parent c811b71336
commit fb83c7112e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ class Su2(MesonPackage):
depends_on("meson@0.61.1:", type=("build"))
depends_on("python@3:", type=("build", "run"))
depends_on("zlib")
depends_on("pkg-config")
depends_on("pkgconfig")
depends_on("mpi", when="+mpi")
depends_on("swig", type="build", when="+pywrapper")
depends_on("py-mpi4py", when="+pywrapper")

View File

@ -77,7 +77,7 @@ class Whizard(AutotoolsPackage):
depends_on("autoconf", type="build")
depends_on("automake", type="build")
depends_on("libtool", type="build")
depends_on("pkgconf", type="build")
depends_on("pkgconfig", type="build")
conflicts(
"%gcc@:5.0",