Skip to content

Commit

Permalink
Documentation/Makefile: Some `git-*.txt' files aren't manpages.
Browse files Browse the repository at this point in the history
In particular, git-tools.txt isn't a manpage, and my Asciidoc gets upset
by it.  The simplest fix is to Remove articles from the list of manpages
the Makefile.

Signed-off-by: Mark Wooding <mdw@distorted.org.uk>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
distorted-mdw authored and Junio C Hamano committed Mar 5, 2006
1 parent b30cc0d commit 4a5d693
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Documentation/Makefile
@@ -1,4 +1,7 @@
MAN1_TXT=$(wildcard git-*.txt) gitk.txt
MAN1_TXT= \
$(filter-out $(addsuffix .txt, $(ARTICLES) $(SP_ARTICLES)), \
$(wildcard git-*.txt)) \
gitk.txt
MAN7_TXT=git.txt

DOC_HTML=$(patsubst %.txt,%.html,$(MAN1_TXT) $(MAN7_TXT))
Expand All @@ -11,6 +14,7 @@ ARTICLES += howto-index
ARTICLES += repository-layout
ARTICLES += hooks
ARTICLES += everyday
ARTICLES += git-tools
# with their own formatting rules.
SP_ARTICLES = glossary howto/revert-branch-rebase

Expand Down

0 comments on commit 4a5d693

Please sign in to comment.