summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: af04b12)
raw | patch | inline | side by side (parent: af04b12)
author | Sergey Vlasov <vsu@altlinux.ru> | |
Fri, 1 Sep 2006 18:42:59 +0000 (22:42 +0400) | ||
committer | Junio 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>
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 | patch | blob | history |
diff --git a/Documentation/Makefile b/Documentation/Makefile
index ed8b886802b599609a312a3dbe8b5af240a9a4f7..c00f5f62b741150e92f38e6394bfa6f111b82b6e 100644 (file)
--- a/Documentation/Makefile
+++ b/Documentation/Makefile
$(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