seibert 2002/09/18 14:09:38
Modified: java/xmls targets.xml
Log:
I am fixing this "again"
This should correct the (../..) problems when building
Revision Changes Path
1.33 +3 -1 xml-axis/java/xmls/targets.xml
Index: targets.xml
===================================================================
RCS file: /home/cvs/xml-axis/java/xmls/targets.xml,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- targets.xml 18 Sep 2002 16:57:18 -0000 1.32
+++ targets.xml 18 Sep 2002 21:09:38 -0000 1.33
@@ -24,7 +24,9 @@
=================================================================== -->
<target name="component-compile">
<echo message="${file}"/>
- <ant antfile="${file}" target="compile"/>
+ <basename property="fileName" file="${file}"/>
+ <dirname property="dirName" file="${file}"/>
+ <ant dir="${dirName}" antfile="${fileName}" target="compile"/>
</target>
<!-- ===================================================================