From: Sergey Vlasov Date: Fri, 1 Sep 2006 18:42:59 +0000 (+0400) Subject: Documentation: Fix howto/revert-branch-rebase.html generation X-Git-Tag: v1.4.3-rc1~135^2~6 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=501524e938aee0b9691fe7fb1abf5eb17a23132f;p=git.git Documentation: Fix howto/revert-branch-rebase.html generation 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 Signed-off-by: Junio C Hamano --- diff --git a/Documentation/Makefile b/Documentation/Makefile index ed8b88680..c00f5f62b 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -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