summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorSergey Vlasov <vsu@altlinux.ru>2006-09-01 18:42:59 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-09-01 19:41:34 (GMT)
commit501524e938aee0b9691fe7fb1abf5eb17a23132f (patch)
tree4e39520b6d0bc1110cfb5e3f4d54eab8ab9ee79a /Documentation
parentaf04b1271090801b277938836dcb7a39fc059721 (diff)
downloadgit-501524e938aee0b9691fe7fb1abf5eb17a23132f.zip
git-501524e938aee0b9691fe7fb1abf5eb17a23132f.tar.gz
git-501524e938aee0b9691fe7fb1abf5eb17a23132f.tar.bz2
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/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile
index ed8b886..c00f5f6 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