mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
configure: support --with-docs=no
Since we promise --with-foo=no is equivalent to --without-foo
This commit is contained in:
parent
a63b5db873
commit
a57b3d4303
1 changed files with 6 additions and 0 deletions
6
configure
vendored
6
configure
vendored
|
@ -187,6 +187,12 @@ for option; do
|
|||
BASHCOMPLETIONDIR="${option#*=}"
|
||||
elif [ "${option%%=*}" = '--zshcompletiondir' ] ; then
|
||||
ZSHCOMLETIONDIR="${option#*=}"
|
||||
elif [ "${option%%=*}" = '--with-docs' ]; then
|
||||
if [ "${option#*=}" = 'no' ]; then
|
||||
WITH_DOCS=0
|
||||
else
|
||||
WITH_DOCS=1
|
||||
fi
|
||||
elif [ "${option}" = '--without-docs' ] ; then
|
||||
WITH_DOCS=0
|
||||
elif [ "${option%%=*}" = '--with-emacs' ]; then
|
||||
|
|
Loading…
Reference in a new issue