Replace pkg-config dependencies with virtual (#8783)
Several packages specified pkg-config as a dependency, which is a specific implementation of the pkgconfig virtual. Most packages do not request a specific implementation. The current concretizer may choose a different implentation of pkgconfig for the nonspecific dependents, which conflicts with the request for pkg-config. This replaces all requests for a specific implementation of pkgconfig with the virtual package as a temporary solution to the issue.
This commit is contained in:
@@ -55,7 +55,7 @@ class Wireshark(CMakePackage):
|
||||
depends_on('libpcap')
|
||||
depends_on('lua@5.0.0:5.2.99')
|
||||
depends_on('krb5')
|
||||
depends_on('pkg-config', type='build')
|
||||
depends_on('pkgconfig', type='build')
|
||||
depends_on('libsmi', when='+smi')
|
||||
depends_on('libssh', when='+libssh')
|
||||
depends_on('nghttp2', when='+nghttp2')
|
||||
|
Reference in New Issue
Block a user