diff options
author | J. Bruce Fields <bfields@citi.umich.edu> | 2007-03-16 11:45:29 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@citi.umich.edu> | 2007-03-18 21:53:19 -0400 |
commit | 0a3985dcfbab7359e5b5e198061d03df56c4055c (patch) | |
tree | 4634172a24a566c9b7deb2bb4a2a1eb324c67fe9 /Documentation/Makefile | |
parent | 6bf035f2780bde45682e0edf40e35a150bd83706 (diff) | |
download | git-0a3985dcfbab7359e5b5e198061d03df56c4055c.tar.gz git-0a3985dcfbab7359e5b5e198061d03df56c4055c.tar.xz |
user-manual: run xsltproc without --nonet option
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>
Diffstat (limited to 'Documentation/Makefile')
-rw-r--r-- | Documentation/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile index 7c1c9e191..48d41c572 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -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) $< |