vulkan: fix use of assert() with older meson versions
authorTim-Philipp Müller <tim@centricular.com>
Thu, 28 May 2020 21:48:15 +0000 (22:48 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Thu, 28 May 2020 21:50:00 +0000 (22:50 +0100)
Follow-up to !1307

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1308>

ext/vulkan/meson.build

index 80f8559..fca87b8 100644 (file)
@@ -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')