Fix pkgconfig dependencies (#11864)

pkgconfig is the correct virtual dependency.
This commit is contained in:
Michael Kuhn 2019-06-27 14:56:43 +02:00 committed by Massimiliano Culpo
parent 1c779608b2
commit 5669144d22
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ class Clamav(AutotoolsPackage):
version('0.101.2', sha256='0a12ebdf6ff7a74c0bde2bdc2b55cae33449e6dd953ec90824a9e01291277634')
depends_on('pkg-config', type='build')
depends_on('pkgconfig', type='build')
depends_on('json-c')
depends_on('openssl')
depends_on('pcre')

View File

@ -19,7 +19,7 @@ class Launchmon(AutotoolsPackage):
depends_on('autoconf', type='build', when='@master')
depends_on('automake', type='build', when='@master')
depends_on('libtool', type='build', when='@master')
depends_on('pkg-config', type='build')
depends_on('pkgconfig', type='build')
depends_on('libgcrypt')
depends_on('libgpg-error')
depends_on("elf", type='link')