diff options
author | nyorain <nyorain@gmail.com> | 2017-07-25 23:25:00 +0200 |
---|---|---|
committer | nyorain <nyorain@gmail.com> | 2017-07-25 23:25:00 +0200 |
commit | 02e5c58efcea5efef9fc26bdce1dd4629ea96d68 (patch) | |
tree | f91c5f47b48abe46b758537aed0fdd3a173da27b | |
parent | 005e0416452c980ef350371db56612a0f12f99dd (diff) | |
download | meson-02e5c58efcea5efef9fc26bdce1dd4629ea96d68.zip meson-02e5c58efcea5efef9fc26bdce1dd4629ea96d68.tar.gz meson-02e5c58efcea5efef9fc26bdce1dd4629ea96d68.tar.bz2 |
Fix style issue in vulkan dep
-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 1de7438..c182e84 100644 --- a/mesonbuild/dependencies/ui.py +++ b/mesonbuild/dependencies/ui.py @@ -556,7 +556,7 @@ class VulkanDependency(ExternalDependency): else: # simply try to guess it, usually works on linux libs = self.compiler.find_library('vulkan', environment, []) - if libs != None and self.compiler.has_header('vulkan/vulkan.h', '', environment): + if libs is not None and self.compiler.has_header('vulkan/vulkan.h', '', environment): self.type_name = 'system' self.is_found = True self.version = 1 # TODO |