diff options
author | Thomas Ackermann <th.acker@arcor.de> | 2012-12-22 19:34:27 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-12-22 20:26:56 -0800 |
commit | 854dfda8be946b6d2a7cbbf2cd85628c92ddfb64 (patch) | |
tree | 67c37d64cb961846e184cd54d582f347310dc98a | |
parent | 086cb911533d6f4233e84c93b08da289ecc8a229 (diff) | |
download | git-854dfda8be946b6d2a7cbbf2cd85628c92ddfb64.tar.gz git-854dfda8be946b6d2a7cbbf2cd85628c92ddfb64.tar.xz |
Sort howto documents in howto-index.txt
Howto documents in howto-index.txt were listed in a rather
random order. So better sort them.
Signed-off-by: Thomas Ackermann <th.acker@arcor.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile index 267dfe135..b81df682d 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -309,7 +309,7 @@ $(patsubst %.txt,%.texi,$(MAN_TXT)): %.texi : %.xml howto-index.txt: howto-index.sh $(wildcard howto/*.txt) $(QUIET_GEN)$(RM) $@+ $@ && \ - '$(SHELL_PATH_SQ)' ./howto-index.sh $(wildcard howto/*.txt) >$@+ && \ + '$(SHELL_PATH_SQ)' ./howto-index.sh $(sort $(wildcard howto/*.txt)) >$@+ && \ mv $@+ $@ $(patsubst %,%.html,$(ARTICLES)) : %.html : %.txt |