diff options
author | Jeff King <peff@peff.net> | 2012-08-08 14:32:37 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-08-08 12:11:53 -0700 |
commit | 41c1709a56da5dd4f4f68268a91d2c55370826cd (patch) | |
tree | bc90bd15a344a06323518ea26c4ff05c421c563e | |
parent | Documentation: list git-credential in plumbing commands (diff) | |
download | tgif-41c1709a56da5dd4f4f68268a91d2c55370826cd.tar.xz |
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>
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2805,7 +2805,7 @@ endif ### Check documentation # 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 \ case "$$v" in \ git-merge-octopus | git-merge-ours | git-merge-recursive | \ @@ -2855,7 +2855,7 @@ check-docs:: documented,gitworkflows | \ sentinel,not,matching,is,ok ) continue ;; \ esac; \ - case " $(ALL_PROGRAMS) $(SCRIPT_LIB) $(BUILT_INS) git gitk " in \ + case " $(ALL_PROGRAMS) $(SCRIPT_LIB) $(BUILT_INS) git gitk gitweb " in \ *" $$cmd "*) ;; \ *) echo "removed but $$how: $$cmd" ;; \ esac; \ |