Skip to content
Snippets Groups Projects
Commit 5669144d authored by Michael Kuhn's avatar Michael Kuhn Committed by Massimiliano Culpo
Browse files

Fix pkgconfig dependencies (#11864)

pkgconfig is the correct virtual dependency.
parent 1c779608
Branches
Tags
No related merge requests found
...@@ -15,7 +15,7 @@ class Clamav(AutotoolsPackage): ...@@ -15,7 +15,7 @@ class Clamav(AutotoolsPackage):
version('0.101.2', sha256='0a12ebdf6ff7a74c0bde2bdc2b55cae33449e6dd953ec90824a9e01291277634') version('0.101.2', sha256='0a12ebdf6ff7a74c0bde2bdc2b55cae33449e6dd953ec90824a9e01291277634')
depends_on('pkg-config', type='build') depends_on('pkgconfig', type='build')
depends_on('json-c') depends_on('json-c')
depends_on('openssl') depends_on('openssl')
depends_on('pcre') depends_on('pcre')
......
...@@ -19,7 +19,7 @@ class Launchmon(AutotoolsPackage): ...@@ -19,7 +19,7 @@ class Launchmon(AutotoolsPackage):
depends_on('autoconf', type='build', when='@master') depends_on('autoconf', type='build', when='@master')
depends_on('automake', type='build', when='@master') depends_on('automake', type='build', when='@master')
depends_on('libtool', 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('libgcrypt')
depends_on('libgpg-error') depends_on('libgpg-error')
depends_on("elf", type='link') depends_on("elf", type='link')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment