You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by Sam Ruby <ru...@us.ibm.com> on 2001/07/16 22:29:55 UTC

[PATCH] allow batik to build using the upcoming Ant 1.4

The below will work with Ant 1.3 and the upcoming Ant 1.4:

Index: build.xml
===================================================================
RCS file: /home/cvs/xml-batik/build.xml,v
retrieving revision 1.75
diff -u -r1.75 build.xml
--- build.xml   2001/05/31 16:59:17     1.75
+++ build.xml   2001/07/16 20:26:01
@@ -228,9 +228,9 @@
     <javac srcdir="${src}" destdir="${dest}" deprecation="on">
       <classpath refid="libs-classpath"/>
       <exclude name="**/*.html"/>
-      <exclude name="**/rhino*" unless="rhino.present"/>
-      <exclude name="**/jpython*" unless="jpython.present"/>
-      <exclude name="**/jacl*" unless="jacl.present"/>
+      <exclude name="**/rhino/*" unless="rhino.present"/>
+      <exclude name="**/jpython/*" unless="jpython.present"/>
+      <exclude name="**/jacl/*" unless="jacl.present"/>
     </javac>
   </target>

- Sam Ruby