summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2022-07-01 15:27:20 +0200
committerBastien Nocera <hadess@hadess.net>2022-07-04 16:02:51 +0200
commit21fe57953dc738f4e16d2b56ca72b64c03cf04c4 (patch)
treec1d989d50bf43c17ece5c39e482970c5ee8d476a /tools
parente9d6f666ce2da99bd3994d0fe54c8593c0906058 (diff)
downloadgrilo-21fe57953dc738f4e16d2b56ca72b64c03cf04c4.tar.gz
build: Fix warning in grilo-inspect build files
WARNING: You should add the boolean check kwarg to the run_command call. It currently defaults to false, but it will default to true in future releases of meson. See also: https://github.com/mesonbuild/meson/issues/9300
Diffstat (limited to 'tools')
-rw-r--r--tools/grilo-inspect/meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/grilo-inspect/meson.build b/tools/grilo-inspect/meson.build
index 3dd6c2f..893b9a6 100644
--- a/tools/grilo-inspect/meson.build
+++ b/tools/grilo-inspect/meson.build
@@ -15,7 +15,8 @@ endif
run_command(python,
'@0@/generate_core_keys.py'.format(meson.current_source_dir()),
'@0@/src/grl-metadata-key.h'.format(source_root),
- '@0@/grl-core-keys.h'.format(meson.current_build_dir()))
+ '@0@/grl-core-keys.h'.format(meson.current_build_dir()),
+ check: true)
configure_file(output: 'config.h',
configuration: cdata)