aboutsummaryrefslogtreecommitdiff
path: root/abe.sh
diff options
context:
space:
mode:
Diffstat (limited to 'abe.sh')
-rwxr-xr-xabe.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/abe.sh b/abe.sh
index 61182332..1b45bb0e 100755
--- a/abe.sh
+++ b/abe.sh
@@ -189,7 +189,9 @@ OPTIONS
maintainer_mode
Configure components in maintainer mode. This
requires the right versions of autoconf and
- automake in $PATH.
+ automake in $PATH. This sets --enable
+ make_docs, unless --disable make_docs is
+ provided later.
make_docs
[default] Make the toolchain package documentation.
@@ -1280,6 +1282,9 @@ while test $# -gt 0; do
;;
maintainer_mode)
maintainer_mode="${value}"
+ if [ "$maintainer_mode" = "yes" ]; then
+ make_docs="yes"
+ fi
;;
make_docs)
make_docs="${value}"