From: Michal Nowak Date: Tue, 13 Apr 2021 16:26:24 +0000 (+0200) Subject: Install man pages when sphinx-build tool is missing X-Git-Tag: v9.17.14~27^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c0566dd8d780520fffe20147013ef59e1123821a;p=thirdparty%2Fbind9.git Install man pages when sphinx-build tool is missing The exclusion of doc/man/ when the sphinx-build tool is missing was excessive as some targets in doc/man/ are necessary to install man pages. --- diff --git a/doc/Makefile.am b/doc/Makefile.am index 2811d5a65b6..34884c61536 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -4,6 +4,10 @@ if HAVE_PERL SUBDIRS += misc endif +# Do not change this line to "SUBDIRS = man" at the top of this file: in +# maintainer mode, the "man" subdirectory depends on the "misc" subdirectory. +SUBDIRS += man + if HAVE_SPHINX_BUILD -SUBDIRS += man arm +SUBDIRS += arm endif HAVE_SPHINX_BUILD