diff options
author | Sergey Vlasov <vsu@altlinux.ru> | 2006-09-01 22:42:59 +0400 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-09-01 12:41:34 -0700 |
commit | 501524e938aee0b9691fe7fb1abf5eb17a23132f (patch) | |
tree | 4e39520b6d0bc1110cfb5e3f4d54eab8ab9ee79a /Documentation | |
parent | af04b1271090801b277938836dcb7a39fc059721 (diff) | |
download | git-501524e938aee0b9691fe7fb1abf5eb17a23132f.tar.gz git-501524e938aee0b9691fe7fb1abf5eb17a23132f.tar.xz |
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 <vsu@altlinux.ru>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |