Code

user-manual: run xsltproc without --nonet option
authorJ. Bruce Fields <bfields@citi.umich.edu>
Fri, 16 Mar 2007 15:45:29 +0000 (11:45 -0400)
committerJ. Bruce Fields <bfields@citi.umich.edu>
Mon, 19 Mar 2007 01:53:19 +0000 (21:53 -0400)
The --nonet option prevents xsltproc from going to the network to find
anything.  But it always tries to find them locally first, so for a
user with the necessary docbook stylesheets installed the build will
work just fine without xsltproc attempting to use the network; all
--nonet does is make it fail rather than falling back on that.  That
doesn't seem particularly helpful.

Signed-off-by: "J. Bruce Fields" <bfields@citi.umich.edu>
Documentation/Makefile

index 7c1c9e1918829b90aeb4e47d10aa0f5951204b0c..48d41c5729d3df55928bd15547aa6d9bcfd80a04 100644 (file)
@@ -106,7 +106,7 @@ user-manual.xml: user-manual.txt user-manual.conf
        $(ASCIIDOC) -b docbook -d book $<
 
 XSLT = http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl
-XSLTOPTS = --nonet --xinclude --stringparam html.stylesheet docbook-xsl.css
+XSLTOPTS = --xinclude --stringparam html.stylesheet docbook-xsl.css
 
 user-manual.html: user-manual.xml
        xsltproc $(XSLTOPTS) -o $@ $(XSLT) $<