diff options
Diffstat (limited to 'mesonbuild/dependencies/ui.py')
-rw-r--r-- | mesonbuild/dependencies/ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/dependencies/ui.py b/mesonbuild/dependencies/ui.py index b740bc6..ae470fb 100644 --- a/mesonbuild/dependencies/ui.py +++ b/mesonbuild/dependencies/ui.py @@ -604,7 +604,7 @@ class VulkanDependency(ExternalDependency): if DependencyMethods.PKGCONFIG in methods: candidates.append(functools.partial(PkgConfigDependency, 'vulkan', environment, kwargs)) - if DependencyMethods.PKGCONFIG in methods: + if DependencyMethods.SYSTEM in methods: candidates.append(functools.partial(VulkanDependency, environment, kwargs)) return candidates |