summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid King <amigadave@amigadave.com>2022-05-31 14:42:44 +0100
committerDavid King <amigadave@amigadave.com>2022-05-31 14:54:12 +0100
commit93ede76498a6dc90f8a1035928801e8289e47410 (patch)
tree52dc62c74c5d7d8f2cb9b236ab522d6f3ca3ef12
parent9cb16d98d7aafbae3e175f578854a061b42b4c93 (diff)
downloadcheese-93ede76498a6dc90f8a1035928801e8289e47410.tar.gz
Explicitly check return code of run_command
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 48de79d1..f35fa9f2 100644
--- a/meson.build
+++ b/meson.build
@@ -151,7 +151,7 @@ gnome_video_effects_dep = dependency(
gst_inspect = find_program('gst-inspect-1.0', required: false)
if gst_inspect.found()
foreach plugin: ['camerabin', 'vp8enc', 'webmmux']
- if run_command(gst_inspect, plugin).returncode() != 0
+ if run_command(gst_inspect, plugin, check: false).returncode() != 0
warning(plugin + ' was not found. It needs to be installed before Cheese is run')
endif
endforeach