darrell 02/05/01 07:30:22
Modified: tools/xsl build.xsl
Log:
Build fix.
Revision Changes Path
1.10 +3 -4 jakarta-ant-myrmidon/tools/xsl/build.xsl
Index: build.xsl
===================================================================
RCS file: /home/cvs/jakarta-ant-myrmidon/tools/xsl/build.xsl,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- build.xsl 1 May 2002 14:05:37 -0000 1.9
+++ build.xsl 1 May 2002 14:30:22 -0000 1.10
@@ -279,15 +279,14 @@
<!-- Generate the depends list for "jars".
This is a list of dependent targets, one for each antlib -->
- <xsl:variable name="jar-depends">
+ <xsl:variable name="jars-depends">
<xsl:for-each select="build/jar|build/antlib">
- <xsl:text>jar-</xsl:text>
+ <xsl:text>, jar-</xsl:text>
<xsl:value-of select="id"/>
- <xsl:if test="not(position()=last())">, </xsl:if>
</xsl:for-each>
</xsl:variable>
- <target name="jars" depends="jars-prepare, {$jar-depends}"
description="Builds the project jar files"/>
+ <target name="jars" depends="jars-prepare{$jars-depends}"
description="Builds the project jar files"/>
<!-- Generate the dependent targets for "jars", one for each
antlib -->
<xsl:apply-templates select="build/jar|build/antlib"/>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>