summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Plattner <aplattner@nvidia.com>2019-05-06 12:46:46 -0700
committerAaron Plattner <aplattner@nvidia.com>2019-05-06 12:46:46 -0700
commitd6d8ed235c798e387fead6f1c2891759d70da4bf (patch)
tree2e9c1683976622cad59bd01ca640d303d9a2cefe
parentfcb3dfcf1a23b0ed2832137a9fc6e9ccf9163ec0 (diff)
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 <aplattner@nvidia.com>
-rw-r--r--doc/meson.build3
1 files changed, 1 insertions, 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',