diff options
author | Michael Kuhn <michael.kuhn@ovgu.de> | 2023-07-23 02:20:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-22 17:20:30 -0700 |
commit | fb83c7112e200cd9551266e0f6c12040cb6d6fc8 (patch) | |
tree | a5e2e2b475ce027a6c1c2a4ee8a484531c324109 /var | |
parent | c811b71336175480d29c4763681ace5c0be3c335 (diff) | |
download | spack-fb83c7112e200cd9551266e0f6c12040cb6d6fc8.tar.gz spack-fb83c7112e200cd9551266e0f6c12040cb6d6fc8.tar.bz2 spack-fb83c7112e200cd9551266e0f6c12040cb6d6fc8.tar.xz spack-fb83c7112e200cd9551266e0f6c12040cb6d6fc8.zip |
Fix pkgconfig dependencies (#39059)
pkg-config and pkgconf are providers.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/su2/package.py | 2 | ||||
-rw-r--r-- | var/spack/repos/builtin/packages/whizard/package.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/su2/package.py b/var/spack/repos/builtin/packages/su2/package.py index 3d62477f40..18d63aedd1 100644 --- a/var/spack/repos/builtin/packages/su2/package.py +++ b/var/spack/repos/builtin/packages/su2/package.py @@ -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") diff --git a/var/spack/repos/builtin/packages/whizard/package.py b/var/spack/repos/builtin/packages/whizard/package.py index 9d580ca8a7..64bb86e8fe 100644 --- a/var/spack/repos/builtin/packages/whizard/package.py +++ b/var/spack/repos/builtin/packages/whizard/package.py @@ -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", |