Change asciidoc backend to more recent name.
authorEric Bloodworth <ergosys@gmail.com>
Mon, 24 Oct 2005 14:54:34 -0700
changeset 1428 9346a7fb3fe2
parent 1427 0980d77f5e9a
child 1429 45bd7925dceb
Change asciidoc backend to more recent name. The latest asciidoc doesn't have an 'html' backend. 'html' was last valid with version 6 ( 2005-1-28). Current options are xhtml11, or html4, with xhtml11 by default.
doc/Makefile
--- a/doc/Makefile	Mon Oct 24 14:54:17 2005 -0700
+++ b/doc/Makefile	Mon Oct 24 14:54:34 2005 -0700
@@ -15,7 +15,7 @@
 	asciidoc -d manpage -b docbook $*.txt
 
 %.html: %.txt
-	asciidoc -b html $*.txt
+	asciidoc -b html4 $*.txt
 
 clean:
 	$(RM) $(MAN) $(MAN:%=%.xml) $(MAN:%=%.html)