Fix pkgconfig dependency (#18750)

pkgconfig is the virtual dependency, pkg-config is one provider.
This commit is contained in:
Michael Kuhn 2020-09-24 04:29:47 +02:00 committed by GitHub
parent 0fabbff03e
commit 7810f73653
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@ class Libimobiledevice(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('libplist')
depends_on('libtasn1')
depends_on('libusbmuxd')

View file

@ -22,7 +22,7 @@ class MiopenHip(CMakePackage):
depends_on('cmake@3:', type='build')
depends_on('boost@1.58.0', type='link')
depends_on('pkg-config', type='build')
depends_on('pkgconfig', type='build')
depends_on('bzip2', type='link')
depends_on('sqlite', type='link')
depends_on('half', type='build')

View file

@ -22,7 +22,7 @@ class MiopenOpencl(CMakePackage):
depends_on('cmake@3:', type='build')
depends_on('boost@1.58.0', type='link')
depends_on('pkg-config', type='build')
depends_on('pkgconfig', type='build')
depends_on('bzip2', type='link')
depends_on('sqlite', type='link')
depends_on('half', type='build')