Fix pkgconfig dependencies (#40524)

`pkgconfig` is the correct virtual dependency.
This commit is contained in:
Michael Kuhn 2023-10-14 11:33:36 +02:00 committed by GitHub
parent 7d96077667
commit 86c7d646c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ class AprUtil(AutotoolsPackage):
depends_on("postgresql", when="+pgsql")
depends_on("sqlite", when="+sqlite")
depends_on("unixodbc", when="+odbc")
depends_on("pkg-config", type="build", when="+crypto ^openssl~shared")
depends_on("pkgconfig", type="build", when="+crypto ^openssl~shared")
@property
def libs(self):

View File

@ -28,7 +28,7 @@ class Libpostal(AutotoolsPackage):
depends_on("libtool", type="build")
depends_on("m4", type="build")
depends_on("curl", type="build")
depends_on("pkg-config", type="build")
depends_on("pkgconfig", type="build")
def autoreconf(self, spec, prefix):
which("sh")("bootstrap.sh")