summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@colm.net>2021-11-13 10:42:39 -0800
committerAdrian Thurston <thurston@colm.net>2021-11-13 10:42:39 -0800
commitd2c175b8c4521dd9d2ee08dbaa24cc62aef8e475 (patch)
tree76d57ccf74c6e2fc9743734b99c12025260e5d4d
parent47ead7eabfccdf6a9593649b2a9f1f981fc742b6 (diff)
downloadragel-d2c175b8c4521dd9d2ee08dbaa24cc62aef8e475.tar.gz
always default to not build the manual
In most build scenarios I now find myself in, the depenencies required for building the manual are not available. There are many uncommon packages to grab. It seems better to build the manual only when asked for explicitly.
-rw-r--r--configure.ac8
1 files changed, 3 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index c9275157..b969dae6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -108,11 +108,9 @@ AC_CHECK_PROG([ASCIIDOC], [asciidoc], [asciidoc])
AC_CHECK_PROG([PYGMENTIZE], [pygmentize], [pygmentize])
AM_CONDITIONAL([BUILD_MANUAL], [test "x$ASCIIDOC" != x && test "x$PYGMENTIZE" != x])
-dnl Choose a default for the build_manual var. If the dist file is present in
-dnl the root then default to no, otherwise go for it.
-AC_CHECK_FILES( [$srcdir/DIST],
- [. $srcdir/DIST;],
- [build_manual=yes; ] )
+dnl Do not build the manual by default. Most of the time the dependencies are
+dnl not available, as they can be quite big installs.
+build_manual=no
dnl
dnl Enable arg to explicitly control the building of the manual