From: Aydın Mercan Date: Mon, 23 Jun 2025 18:32:34 +0000 (+0300) Subject: do not install sphinx-build manpages in templated ones exist X-Git-Tag: v9.21.10~10^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e7ed1c0519e71354a88772fb45030ebc2a19125;p=thirdparty%2Fbind9.git do not install sphinx-build manpages in templated ones exist When building from the tarball, meson would try to install both sphinx-built and template configured manpages. While harmless for now, it might cause issues for future meson version. --- diff --git a/meson.build b/meson.build index 1e91c119e69..c00be2bdce3 100644 --- a/meson.build +++ b/meson.build @@ -1672,7 +1672,7 @@ if doc_opt.allowed() 'man', depend_files: manrst_srcconf.sources(), depends: doc_misc_targets, - install: true, + install: man_srcconf.sources().length() == 0, install_dir: fs.parent(mandir), output: fs.name(mandir), env: env,