diff options
author | Christoph Reiter <reiter.christoph@gmail.com> | 2019-07-26 18:46:15 +0200 |
---|---|---|
committer | Christoph Reiter <reiter.christoph@gmail.com> | 2019-07-26 18:18:23 +0000 |
commit | e8ba84091eadbe1b0edabf9ec276f00651729aa7 (patch) | |
tree | ca5f03ed2b615fcbcde9d21e012e311e96e672ef /tools | |
parent | 91bbef9e27dd1d7bcd4f4d9852c0edd0d3af82e9 (diff) | |
download | gobject-introspection-e8ba84091eadbe1b0edabf9ec276f00651729aa7.tar.gz |
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
Diffstat (limited to 'tools')
-rw-r--r-- | tools/meson.build | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/meson.build b/tools/meson.build index f9b11616..6cc3186a 100644 --- a/tools/meson.build +++ b/tools/meson.build @@ -30,7 +30,6 @@ foreach tool : tools input: 'g-ir-tool-template.in', output: tool[0], configuration: tools_conf, - install: true, install_dir: get_option('bindir'), ) tool_output += tool_bin |