[5/5] Disable man page generation when running "make distcheck"

Message ID 20180511123012.2138575-5-michael.tremer@ipfire.org
State Dropped
Headers
Series [1/5] Makefile: Remove any excessive whitespace |

Commit Message

Michael Tremer May 11, 2018, 10:30 p.m. UTC
  Man pages don't exist yet, so make distcheck fails.

This patch has to be reverted as soon as man pages are available.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
---
 Makefile.am | 3 +++
 1 file changed, 3 insertions(+)
  

Patch

diff --git a/Makefile.am b/Makefile.am
index b36d6ae3ff4e..5fc9df645a04 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -16,6 +16,9 @@  EXTRA_DIST =
 INSTALL_DIRS =
 noinst_DATA =
 
+DISTCHECK_CONFIGURE_FLAGS = \
+	--disable-man-pages
+
 AM_V_XSLT   = $(AM_V_XSLT_$(V))
 AM_V_XSLT_  = $(AM_V_XSLT_$(AM_DEFAULT_VERBOSITY))
 AM_V_XSLT_0 = @echo "  XSLT    " $@;