summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2022-01-06 17:18:03 +0100
committerBastien Nocera <hadess@hadess.net>2022-01-06 17:22:09 +0100
commit80672c9ae6099e65aed82776c5c413cbd3523909 (patch)
tree99e42c3ed66dbebc840ce376ea0a49d508aea241 /data
parente5ec923676400a2643107f7da1a682f96fdd60ea (diff)
downloadtotem-80672c9ae6099e65aed82776c5c413cbd3523909.tar.gz
build: Add check kwarg to run_command() calls
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 'data')
-rw-r--r--data/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/data/meson.build b/data/meson.build
index b38997400..b31ce755c 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -60,7 +60,7 @@ ui_resources = gnome.compile_resources(
c_name: 'totem'
)
-r = run_command(desktop_sh, mime_type_list, uri_schemes_list)
+r = run_command(desktop_sh, mime_type_list, uri_schemes_list, check: true)
desktop_conf = configuration_data()
desktop_conf.set('VERSION', totem_version)
@@ -109,7 +109,7 @@ configure_file(
configuration: service_conf
)
-r = run_command(thumbnailer_sh, mime_type_list)
+r = run_command(thumbnailer_sh, mime_type_list, check: true)
thumbnailer_conf = configuration_data()
thumbnailer_conf.set('BINDIR', totem_bindir)