From 39d87269b31e64cfdfb32706236ca84329dbfca4 Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Mon, 10 Sep 2018 12:11:46 +0100 Subject: Add missing reporting of some methods tried to find the dependency Make us report 'system' and 'framework' when we tried those methods to locate the dependency. --- mesonbuild/dependencies/ui.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'mesonbuild/dependencies/ui.py') diff --git a/mesonbuild/dependencies/ui.py b/mesonbuild/dependencies/ui.py index ae470fb..289d1b4 100644 --- a/mesonbuild/dependencies/ui.py +++ b/mesonbuild/dependencies/ui.py @@ -72,6 +72,8 @@ class GLDependency(ExternalDependency): else: return [DependencyMethods.PKGCONFIG] + def log_tried(self): + return 'system' class GnuStepDependency(ConfigToolDependency): @@ -612,3 +614,6 @@ class VulkanDependency(ExternalDependency): @staticmethod def get_methods(): return [DependencyMethods.PKGCONFIG, DependencyMethods.SYSTEM] + + def log_tried(self): + return 'system' -- cgit v1.1