From: Justin Erenkrantz Date: Thu, 16 May 2002 06:49:14 +0000 (+0000) Subject: Ant is horribly broken for me and can't complete an entire build here without X-Git-Tag: 2.0.37~374 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dacb7f806fe032feab7758f8e1f30fcca6cc67f0;p=thirdparty%2Fapache%2Fhttpd.git Ant is horribly broken for me and can't complete an entire build here without producing an "IndexOutOfBounds" exception (no stack trace), so provide info for Xalan-J make. (Assumes you have Xalan-J stuff in your CLASSPATH.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95131 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/style/Makefile b/docs/manual/style/Makefile index 623d9be6ad7..14239feb93e 100644 --- a/docs/manual/style/Makefile +++ b/docs/manual/style/Makefile @@ -12,5 +12,9 @@ html: $(htmlfiles) # xsl-c -HTML -OUT $@ -IN ./manual.xsl # Xalan-C++ users use this: +#%.html : %.xml +# Xalan -v -o $@ $< ./manual.xsl + +# Xalan-J users use this: %.html : %.xml - Xalan -v -o $@ $< ./manual.xsl + java org.apache.xalan.xslt.Process -in $< -out $@ -xsl manual.xsl