From e8ba84091eadbe1b0edabf9ec276f00651729aa7 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Fri, 26 Jul 2019 18:46:15 +0200 Subject: meson: don't pass "install" to configure_file() unless really needed In our case it was never needed because it defaults to true if install_dir is set, which it always is for all calls. This avoids a warning when running with newer meson where it complains that install is only available with 0.50+. Fixes #298 --- girepository/meson.build | 1 - 1 file changed, 1 deletion(-) (limited to 'girepository/meson.build') diff --git a/girepository/meson.build b/girepository/meson.build index 1d7aed6b..0183153e 100644 --- a/girepository/meson.build +++ b/girepository/meson.build @@ -179,7 +179,6 @@ configure_file(input : 'gdump.c', output : 'gdump.c', copy: true, install_dir: join_paths(get_option('datadir'), 'gobject-introspection-1.0'), - install : true, ) girepo_dep = declare_dependency( -- cgit v1.2.1