Skip to content

Commit

Permalink
Add an option -nodoc to configure, same (but shorter) than -with-doc no
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15962 85f007b7-540e-0410-9357-904b9bb8a0f7
  • Loading branch information
letouzey committed Nov 12, 2012
1 parent 863b9fa commit c02eaa8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions configure
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ usage () {
printf "\tSpecifies to not try to build coqide mac integration\n" printf "\tSpecifies to not try to build coqide mac integration\n"
echo "-browser <command>" echo "-browser <command>"
printf "\tUse <command> to open URL %%s\n" printf "\tUse <command> to open URL %%s\n"
echo "-with-doc (yes|no)" echo "-nodoc"
printf "\tSpecifies whether or not to compile the documentation\n" printf "\tSpecifies to not compile the documentation\n"
echo "-with-geoproof (yes|no)" echo "-with-geoproof (yes|no)"
printf "\tSpecifies whether or not to use Geoproof binding\n" printf "\tSpecifies whether or not to use Geoproof binding\n"
echo "-byte-only" echo "-byte-only"
Expand Down Expand Up @@ -228,6 +228,8 @@ while : ; do
-coqwebsite|--coqwebsite) wwwcoq_spec=yes -coqwebsite|--coqwebsite) wwwcoq_spec=yes
WWWCOQ=$2 WWWCOQ=$2
shift;; shift;;
-nodoc|--nodoc) with_doc_spec=yes
with_doc=no;;
-with-doc|--with-doc) with_doc_spec=yes -with-doc|--with-doc) with_doc_spec=yes
case "$2" in case "$2" in
yes|all) with_doc=all;; yes|all) with_doc=all;;
Expand Down

0 comments on commit c02eaa8

Please sign in to comment.