From 00caf46e3fd5e517c0f2272b809dea949de550bf Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 28 May 2020 22:48:15 +0100 Subject: [PATCH] vulkan: fix use of assert() with older meson versions Follow-up to !1307 Part-of: --- ext/vulkan/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ext/vulkan/meson.build b/ext/vulkan/meson.build index 80f8559..fca87b8 100644 --- a/ext/vulkan/meson.build +++ b/ext/vulkan/meson.build @@ -10,7 +10,8 @@ if not gstvulkan_dep.found() endif endif -assert(glslc.found()) +# Should already have checked for this +assert(glslc.found(), 'Expected glslc to be available') subdir('shaders') -- 2.7.4