summaryrefslogtreecommitdiff
path: root/gio
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2022-02-14 11:13:06 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2022-02-14 11:13:06 +0100
commit2a96b129fbc1b65f34597a72e29cb9cc7cb208d9 (patch)
tree180f7057e0b9eb6ace503481a17cab6dd8c0eba3 /gio
parent9a90d530e8ff90a22f266452579a89645c6c5937 (diff)
downloadglibmm-2a96b129fbc1b65f34597a72e29cb9cc7cb208d9.tar.gz
meson.build: Specify 'check' option in run_command()
The default value will be changed in future Meson releases. Don't use deprecated python3.path() and execute(..., gui_app: ...).
Diffstat (limited to 'gio')
-rw-r--r--gio/giomm/meson.build5
1 files changed, 3 insertions, 2 deletions
diff --git a/gio/giomm/meson.build b/gio/giomm/meson.build
index 2f2193e3..fc508246 100644
--- a/gio/giomm/meson.build
+++ b/gio/giomm/meson.build
@@ -346,6 +346,7 @@ else # not maintainer_mode
meson.current_build_dir(),
src_untracked_giomm,
giomm_hg_ccg_basenames,
+ check: true,
)
built_cc_files = [ rel_untracked_giomm / 'wrap_init.cc' ]
@@ -375,7 +376,7 @@ endif
# Install built .h and _p.h files.
meson.add_install_script(
- python3.path(), generate_binding_py, 'install_built_h_files',
+ python3, generate_binding_py, 'install_built_h_files',
built_h_cc_dir,
install_includedir / giomm_pcname / 'giomm', # subdir below {prefix}
giomm_used_hg_ccg_basenames
@@ -384,7 +385,7 @@ meson.add_install_script(
if can_add_dist_script
# Distribute built files.
meson.add_dist_script(
- python3.path(), generate_binding_py, 'dist_built_files',
+ python3, generate_binding_py, 'dist_built_files',
built_h_cc_dir,
untracked_giomm,
giomm_hg_ccg_basenames,