Commit d6d8ed23 authored by Aaron Plattner's avatar Aaron Plattner
Browse files

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: default avatarAaron Plattner <aplattner@nvidia.com>
parent fcb3dfcf
...@@ -9,8 +9,7 @@ if doc_option != 'false' and doxygen.found() and dot.found() ...@@ -9,8 +9,7 @@ if doc_option != 'false' and doxygen.found() and dot.found()
doxyfile = configure_file( doxyfile = configure_file(
input : 'Doxyfile.in', input : 'Doxyfile.in',
output : 'Doxyfile', output : 'Doxyfile',
configuration : cdata, configuration : cdata
install : false
) )
html = custom_target('libvdpau-docs', html = custom_target('libvdpau-docs',
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment