]> git.puffer.fish Git - mirror/frr.git/commitdiff
doc: html default off
authorDavid Lamparter <equinox@diac24.net>
Sat, 18 Aug 2018 15:06:22 +0000 (17:06 +0200)
committerDavid Lamparter <equinox@opensourcerouting.org>
Thu, 30 Aug 2018 06:06:44 +0000 (08:06 +0200)
... RPM builds break if we enable this unconditionally; should really
change this in CI instead.

Signed-off-by: David Lamparter <equinox@diac24.net>
configure.ac

index aadf8a930308e3d3e319024d6cc731fa1719433a..91e5990b77d36ef02ea3894e3eac1953340ca9a1 100755 (executable)
@@ -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