From f3c04274a468b82603a18427cf6b74b1887996d9 Mon Sep 17 00:00:00 2001 From: David Lamparter Date: Sat, 18 Aug 2018 17:06:22 +0200 Subject: [PATCH] doc: html default off ... RPM builds break if we enable this unconditionally; should really change this in CI instead. Signed-off-by: David Lamparter --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index b5e9c2514e..396e561070 100755 --- a/configure.ac +++ b/configure.ac @@ -348,7 +348,7 @@ AC_ARG_ENABLE(vtysh, AC_ARG_ENABLE(doc, AS_HELP_STRING([--disable-doc], [do not build docs])) AC_ARG_ENABLE(doc-html, - AS_HELP_STRING([--disable-doc-html], [do not build HTML docs])) + AS_HELP_STRING([--enable-doc-html], [build HTML docs])) AC_ARG_ENABLE(zebra, AS_HELP_STRING([--disable-zebra], [do not build zebra daemon])) AC_ARG_ENABLE(bgpd, @@ -1341,7 +1341,7 @@ FRR_INCLUDES dnl disable doc check AC_CHECK_PROGS([SPHINXBUILD], [sphinx-build sphinx-build3 sphinx-build2], [no]) AM_CONDITIONAL(DOC, test "${enable_doc}" != "no") -AM_CONDITIONAL(DOC_HTML, test "${enable_doc_html}" != "no") +AM_CONDITIONAL(DOC_HTML, test "${enable_doc_html}" = "yes") dnl -------------------- dnl Daemon disable check -- 2.39.5