Skip to content
Snippets Groups Projects
Unverified Commit fb83c711 authored by Michael Kuhn's avatar Michael Kuhn Committed by GitHub
Browse files

Fix pkgconfig dependencies (#39059)

pkg-config and pkgconf are providers.
parent c811b713
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,7 @@ class Su2(MesonPackage): ...@@ -53,7 +53,7 @@ class Su2(MesonPackage):
depends_on("meson@0.61.1:", type=("build")) depends_on("meson@0.61.1:", type=("build"))
depends_on("python@3:", type=("build", "run")) depends_on("python@3:", type=("build", "run"))
depends_on("zlib") depends_on("zlib")
depends_on("pkg-config") depends_on("pkgconfig")
depends_on("mpi", when="+mpi") depends_on("mpi", when="+mpi")
depends_on("swig", type="build", when="+pywrapper") depends_on("swig", type="build", when="+pywrapper")
depends_on("py-mpi4py", when="+pywrapper") depends_on("py-mpi4py", when="+pywrapper")
......
...@@ -77,7 +77,7 @@ class Whizard(AutotoolsPackage): ...@@ -77,7 +77,7 @@ class Whizard(AutotoolsPackage):
depends_on("autoconf", type="build") depends_on("autoconf", type="build")
depends_on("automake", type="build") depends_on("automake", type="build")
depends_on("libtool", type="build") depends_on("libtool", type="build")
depends_on("pkgconf", type="build") depends_on("pkgconfig", type="build")
conflicts( conflicts(
"%gcc@:5.0", "%gcc@:5.0",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment