diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2018-07-31 19:53:18 +0100 |
---|---|---|
committer | Jon Turney <jon.turney@dronecode.org.uk> | 2018-08-01 14:25:57 +0100 |
commit | 983263e82cee812b32b2863d2725027c779bf81d (patch) | |
tree | 8f95ed13b7b7f132cffdc71007c5c0c055a3bc49 | |
parent | fce4f351701efa0ff95c7966b83289fc24092452 (diff) | |
download | meson-983263e82cee812b32b2863d2725027c779bf81d.zip meson-983263e82cee812b32b2863d2725027c779bf81d.tar.gz meson-983263e82cee812b32b2863d2725027c779bf81d.tar.bz2 |
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?
-rw-r--r-- | mesonbuild/dependencies/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/dependencies/base.py b/mesonbuild/dependencies/base.py index 9d7e24c..15dbd62 100644 --- a/mesonbuild/dependencies/base.py +++ b/mesonbuild/dependencies/base.py @@ -947,7 +947,7 @@ class DubDependency(ExternalDependency): @staticmethod def get_methods(): - return [DependencyMethods.PKGCONFIG, DependencyMethods.DUB] + return [DependencyMethods.DUB] class ExternalProgram: windows_exts = ('exe', 'msc', 'com', 'bat', 'cmd') |