From e51478c13432cbd0483908e6e2279a2ec2d081a4 Mon Sep 17 00:00:00 2001 From: Antonio Borneo Date: Fri, 24 May 2019 12:53:39 +0200 Subject: [PATCH] Fix build-time warning with meson 0.50.1 Commit 6666dee52b1e ("man: Add weston-bindings(7) describing desktop shell shortcuts") adds in file "man/meson.build" the line install: true, This line triggers a warning with meson 0.50.1: WARNING: Project targetting '>= 0.47' but tried to use feature introduced in '0.50.0': install arg in configure_file Accordingly with https://github.com/mesonbuild/meson/issues/5048 the line was silently ignored by meson before 0.50.0 One possible fix for this warning would require updating the minumum version of meson required by weston, but then forcing every builder to update meson. Instead, since all the other instances in "man/meson.build" of configure_file don't use the feature "install:", it seams safe to simply remove the feature for the instal of "weston-bindings.man". Signed-off-by: Antonio Borneo --- man/meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/man/meson.build b/man/meson.build index ab69aa54..a2b8edc2 100644 --- a/man/meson.build +++ b/man/meson.build @@ -18,7 +18,6 @@ configure_file( configure_file( input: 'weston-bindings.man', output: 'weston-bindings.7', - install: true, install_dir: join_paths(dir_man, 'man7'), configuration: man_conf )