check-docs: mention gitweb specially

Like gitk, gitweb is not listed in the usual Makefile
variables and must be fed to check-docs specially. Otherwise
check-docs thinks it is documented but removed.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jeff King
2012-08-08 14:32:37 -04:00
committed by Junio C Hamano
parent fa0aad4ff5
commit 41c1709a56

View File

@ -2805,7 +2805,7 @@ endif
### Check documentation ### Check documentation
# #
check-docs:: check-docs::
@(for v in $(ALL_PROGRAMS) $(SCRIPT_LIB) $(BUILT_INS) git gitk; \ @(for v in $(ALL_PROGRAMS) $(SCRIPT_LIB) $(BUILT_INS) git gitk gitweb; \
do \ do \
case "$$v" in \ case "$$v" in \
git-merge-octopus | git-merge-ours | git-merge-recursive | \ git-merge-octopus | git-merge-ours | git-merge-recursive | \
@ -2855,7 +2855,7 @@ check-docs::
documented,gitworkflows | \ documented,gitworkflows | \
sentinel,not,matching,is,ok ) continue ;; \ sentinel,not,matching,is,ok ) continue ;; \
esac; \ esac; \
case " $(ALL_PROGRAMS) $(SCRIPT_LIB) $(BUILT_INS) git gitk " in \ case " $(ALL_PROGRAMS) $(SCRIPT_LIB) $(BUILT_INS) git gitk gitweb " in \
*" $$cmd "*) ;; \ *" $$cmd "*) ;; \
*) echo "removed but $$how: $$cmd" ;; \ *) echo "removed but $$how: $$cmd" ;; \
esac; \ esac; \