summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.com>2022-09-18 16:51:55 -0400
committerXavier Claessens <xavier.claessens@collabora.com>2022-09-20 11:30:12 -0400
commita73ca336aa7b0e535338868b296f658a62f0fd77 (patch)
treeb26f1aeab6d6907bcdea7fd908c0941ba5e049e6 /tools
parent49fd523af34a50696fef650dc685a98620cfd474 (diff)
downloadglib-a73ca336aa7b0e535338868b296f658a62f0fd77.tar.gz
meson: Set install_tag on remaining installed files
Diffstat (limited to 'tools')
-rw-r--r--tools/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/meson.build b/tools/meson.build
index 0542fb89b..e91c8a2f9 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -18,5 +18,7 @@ if host_system != 'windows'
# Install Valgrind suppression file (except on Windows,
# as Valgrind is currently not supported on Windows)
install_data('glib.supp',
- install_dir : join_paths(get_option('datadir'), 'glib-2.0', 'valgrind'))
+ install_dir : get_option('datadir') / 'glib-2.0' / 'valgrind',
+ install_tag : 'devel',
+ )
endif