You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by hi...@apache.org on 2010/10/06 15:41:44 UTC

svn commit: r1005032 - /harmony/enhanced/java/branches/java6/classlib/build.xml

Author: hindessm
Date: Wed Oct  6 13:41:44 2010
New Revision: 1005032

URL: http://svn.apache.org/viewvc?rev=1005032&view=rev
Log:
Fix build break for new ecj version.  Note however that this is
definitely not the right solution to this problem.  This solves
the compilation in one place.  It doesn't solve the problem with

  ant -f classlib/modules/x-tools/build.xml clean build

Nor does it solve the problem with these classes actually being usable
at runtime... since ecj jar in jdk/lib is not on the bootclasspath.

Modified:
    harmony/enhanced/java/branches/java6/classlib/build.xml

Modified: harmony/enhanced/java/branches/java6/classlib/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/java6/classlib/build.xml?rev=1005032&r1=1005031&r2=1005032&view=diff
==============================================================================
--- harmony/enhanced/java/branches/java6/classlib/build.xml (original)
+++ harmony/enhanced/java/branches/java6/classlib/build.xml Wed Oct  6 13:41:44 2010
@@ -172,7 +172,7 @@ module:
                 <fileset dir="${depends.jars}">
                     <!-- FIXME: picked mx4j arbitrarily, needs to be non-empty set -->
 		    <include name="**/mx4j.jar" />
-		    <include name="**/ecj-3.5.1.jar" />
+		    <include name="**/ecj-3.6.1.jar" />
                 </fileset>
             </bootclasspath>
         </hy.javac>