Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhao, Gang <gang.zhao.42@gmail.com>2022-10-22 18:34:59 +0300
committerSebastian Dröge <slomo@coaxion.net>2022-10-22 19:27:41 +0300
commitf3546819edd26042f9d853a7f1ff7d24771f61a6 (patch)
tree2e94ff306acd3676f6b1e20a0043f5eadc820a22 /meson.build
parent68ab01254decb4d44709e2ede3276204e346735d (diff)
meson: Fix warning
Fixed following warning. gst-plugins-rs| WARNING: You should add the boolean check kwarg to the run_command call. gst-plugins-rs| It currently defaults to false, gst-plugins-rs| but it will default to true in future releases of meson. gst-plugins-rs| See also: https://github.com/mesonbuild/meson/issues/9300
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 963a3a3a6..aa5260c5b 100644
--- a/meson.build
+++ b/meson.build
@@ -104,7 +104,7 @@ csound_dep = dependency('', required: false)
if not csound_dep.found() and not csound_option.disabled()
# if csound isn't distributed with pkg-config then user needs to define CSOUND_LIB_DIR with its location
- res = run_command(python, '-c', 'import os; print(os.environ["CSOUND_LIB_DIR"])')
+ res = run_command(python, '-c', 'import os; print(os.environ["CSOUND_LIB_DIR"])', check: false)
if res.returncode() == 0
csound_libdir = res.stdout().strip()
csound_dep = cc.find_library('csound64', dirs: csound_libdir, required: false)