Fix pkgconfig dependency (#18750)
pkgconfig is the virtual dependency, pkg-config is one provider.
This commit is contained in:
parent
0fabbff03e
commit
7810f73653
3 changed files with 3 additions and 3 deletions
|
@ -17,7 +17,7 @@ class Libimobiledevice(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('libplist')
|
depends_on('libplist')
|
||||||
depends_on('libtasn1')
|
depends_on('libtasn1')
|
||||||
depends_on('libusbmuxd')
|
depends_on('libusbmuxd')
|
||||||
|
|
|
@ -22,7 +22,7 @@ class MiopenHip(CMakePackage):
|
||||||
|
|
||||||
depends_on('cmake@3:', type='build')
|
depends_on('cmake@3:', type='build')
|
||||||
depends_on('boost@1.58.0', type='link')
|
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('bzip2', type='link')
|
||||||
depends_on('sqlite', type='link')
|
depends_on('sqlite', type='link')
|
||||||
depends_on('half', type='build')
|
depends_on('half', type='build')
|
||||||
|
|
|
@ -22,7 +22,7 @@ class MiopenOpencl(CMakePackage):
|
||||||
|
|
||||||
depends_on('cmake@3:', type='build')
|
depends_on('cmake@3:', type='build')
|
||||||
depends_on('boost@1.58.0', type='link')
|
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('bzip2', type='link')
|
||||||
depends_on('sqlite', type='link')
|
depends_on('sqlite', type='link')
|
||||||
depends_on('half', type='build')
|
depends_on('half', type='build')
|
||||||
|
|
Loading…
Reference in a new issue