From: Tim-Philipp Müller Date: Thu, 28 May 2020 21:48:15 +0000 (+0100) Subject: vulkan: fix use of assert() with older meson versions X-Git-Tag: 1.19.3~507^2~1810 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=00caf46e3fd5e517c0f2272b809dea949de550bf;p=platform%2Fupstream%2Fgstreamer.git vulkan: fix use of assert() with older meson versions Follow-up to !1307 Part-of: --- 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')