Fix pkg-config dependencies (#9738)

Replace dependencies on specific pkgconfig implementation (e.g. pkgconf)
with dependency on pkgconfig virtual package
This commit is contained in:
Michael Kuhn
2018-11-13 07:01:41 +01:00
committed by Peter Scheibel
parent 077e509dda
commit f56f6d4e38
4 changed files with 4 additions and 4 deletions

View File

@@ -18,6 +18,6 @@ class Axel(AutotoolsPackage):
depends_on('autoconf', type='build')
depends_on('automake', type='build')
depends_on('libtool', type='build')
depends_on('pkgconf', type='build')
depends_on('pkgconfig', type='build')
depends_on('gettext')
depends_on('openssl')