diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-03-03 23:43:54 +0100 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-04-28 14:33:22 +0200 |
commit | 8a32fc8dbeb6d0fb5666f2af694d70fa6b575e03 (patch) | |
tree | 7ba9f0d312555c1063292a7fad5752b1d29acc2d /mesonbuild/dependencies/ui.py | |
parent | 47c06a787504dd9635a0bd5a9e2013aa4bf85b12 (diff) | |
download | meson-8a32fc8dbeb6d0fb5666f2af694d70fa6b575e03.zip meson-8a32fc8dbeb6d0fb5666f2af694d70fa6b575e03.tar.gz meson-8a32fc8dbeb6d0fb5666f2af694d70fa6b575e03.tar.bz2 |
Disable cache for dependencies
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 0a01ac4..4b3fb70 100644 --- a/mesonbuild/dependencies/ui.py +++ b/mesonbuild/dependencies/ui.py @@ -641,7 +641,7 @@ class VulkanDependency(ExternalDependency): else: # simply try to guess it, usually works on linux libs = self.clib_compiler.find_library('vulkan', environment, []) - if libs is not None and self.clib_compiler.has_header('vulkan/vulkan.h', '', environment)[0]: + if libs is not None and self.clib_compiler.has_header('vulkan/vulkan.h', '', environment, disable_cache=True)[0]: self.type_name = 'system' self.is_found = True for lib in libs: |