build: Build manuals by default

This commit is contained in:
Ethan P 2020-10-04 11:51:45 -07:00
parent 5fc43a2d8c
commit 7d2d861d7d
No known key found for this signature in database
GPG Key ID: 6963FD04F6CF35EA

View File

@ -365,7 +365,7 @@ OPT_INSTALL=false
OPT_COMPRESS=false
OPT_VERIFY=true
OPT_BANNER=true
OPT_MANUALS=false
OPT_MANUALS=true
OPT_INLINE=true
OPT_MINIFY="lib"
OPT_PREFIX="/usr/local"
@ -380,6 +380,7 @@ while shiftopt; do
--install) OPT_INSTALL=true ;;
--compress) OPT_COMPRESS=true ;;
--manuals) OPT_MANUALS=true ;;
--no-manuals) OPT_MANUALS=false ;;
--no-verify) OPT_VERIFY=false ;;
--no-banner) OPT_BANNER=false ;;
--no-inline) OPT_INLINE=false ;;