Remove do-nothing pkgconfig method from dub

dub dependencies allegedly support method:pkgconfig, but this is meaningless
as it's only ever used when the dub method is explicitly requested.
Possibly cut-and-pasted from elsewhere?
pull/3657/head
Jon Turney 6 years ago
parent fce4f35170
commit 983263e82c
No known key found for this signature in database
GPG Key ID: C7C86F0370285C81
  1. 2
      mesonbuild/dependencies/base.py

@ -947,7 +947,7 @@ class DubDependency(ExternalDependency):
@staticmethod @staticmethod
def get_methods(): def get_methods():
return [DependencyMethods.PKGCONFIG, DependencyMethods.DUB] return [DependencyMethods.DUB]
class ExternalProgram: class ExternalProgram:
windows_exts = ('exe', 'msc', 'com', 'bat', 'cmd') windows_exts = ('exe', 'msc', 'com', 'bat', 'cmd')

Loading…
Cancel
Save