From: Michael Biebl Date: Sun, 30 Apr 2017 16:21:59 +0000 (+0200) Subject: build-sys: don't generate index.html with --disable-manpages (#5865) X-Git-Tag: v234~256 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=db374ff564e509be86ed22667de1c245ad2c5387;p=thirdparty%2Fsystemd.git build-sys: don't generate index.html with --disable-manpages (#5865) Don't generate man/index.html and the dependent man/systemd.index.html if man pages have been disabled. Closes #5854 --- diff --git a/Makefile.am b/Makefile.am index 11b539da9b3..d5659782664 100644 --- a/Makefile.am +++ b/Makefile.am @@ -749,9 +749,11 @@ man/index.html: man/systemd.index.html $(AM_V_LN)$(LN_S) -f systemd.index.html $@ if HAVE_PYTHON +if ENABLE_MANPAGES noinst_DATA += \ man/index.html endif +endif CLEANFILES += \ man/index.html