OSDN Git Service

Documentation: Fix howto/revert-branch-rebase.html generation
authorSergey Vlasov <vsu@altlinux.ru>
Fri, 1 Sep 2006 18:42:59 +0000 (22:42 +0400)
committerJunio C Hamano <junkio@cox.net>
Fri, 1 Sep 2006 19:41:34 +0000 (12:41 -0700)
The rule for howto/*.html used "$?", which expands to the list of all
newer prerequisites, including asciidoc.conf added by another rule.
"$<" should be used instead.

Signed-off-by: Sergey Vlasov <vsu@altlinux.ru>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/Makefile

index ed8b886..c00f5f6 100644 (file)
@@ -107,7 +107,7 @@ WEBDOC_DEST = /pub/software/scm/git/docs
 
 $(patsubst %.txt,%.html,$(wildcard howto/*.txt)): %.html : %.txt
        rm -f $@+ $@
-       sed -e '1,/^$$/d' $? | asciidoc -b xhtml11 - >$@+
+       sed -e '1,/^$$/d' $< | asciidoc -b xhtml11 - >$@+
        mv $@+ $@
 
 install-webdoc : html