From d6d8ed235c798e387fead6f1c2891759d70da4bf Mon Sep 17 00:00:00 2001 From: Aaron Plattner Date: Mon, 6 May 2019 12:46:46 -0700 Subject: meson: Remove unnecessary 'install' parameter from configure_file() The 'install' parameter to the configure_file() function explicitly controls whether the file is installed, but omitting it just infers whether to install the file based on the presence or absence of the 'install_dir' parameter. This parameter requires Meson 0.50 or newer: WARNING: Project specifies a minimum meson_version '>=0.41' but uses features which were added in newer versions: * 0.50.0: {'install arg in configure_file'} We don't need to specify 'install' for this particular file because 'install_dir' is not set, so just remove it to drop the Meson requirement back down to 0.41. Signed-off-by: Aaron Plattner --- doc/meson.build | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/meson.build b/doc/meson.build index c00894e..af702e4 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -9,8 +9,7 @@ if doc_option != 'false' and doxygen.found() and dot.found() doxyfile = configure_file( input : 'Doxyfile.in', output : 'Doxyfile', - configuration : cdata, - install : false + configuration : cdata ) html = custom_target('libvdpau-docs', -- cgit v1.2.3