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/05/13 11:45:10 UTC

svn commit: r943857 - /harmony/enhanced/java/trunk/classlib/build.xml

Author: hindessm
Date: Thu May 13 09:45:09 2010
New Revision: 943857

URL: http://svn.apache.org/viewvc?rev=943857&view=rev
Log:
Workaround for ant bug:

  https://issues.apache.org/bugzilla/show_bug.cgi?id=29658

I like that they marked it as WONTFIX because they don't want to break
anyone's build scripts but still change the behaviour is between 1.7.0 (which
exhibits the bug) and 1.8.0 (which I use and so didn't see this problem).

Modified:
    harmony/enhanced/java/trunk/classlib/build.xml

Modified: harmony/enhanced/java/trunk/classlib/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/trunk/classlib/build.xml?rev=943857&r1=943856&r2=943857&view=diff
==============================================================================
--- harmony/enhanced/java/trunk/classlib/build.xml (original)
+++ harmony/enhanced/java/trunk/classlib/build.xml Thu May 13 09:45:09 2010
@@ -386,7 +386,8 @@ ${built.files.list}
             depends="-test-init-hdk,clean-test-output"
             description="Runs all tests">
         <mkdir dir="${tests.output}" />
-        <ant dir="${hy.hdk}/build/test" inheritall="false" target="test">
+        <ant antfile="${hy.hdk}/build/test/build.xml"
+             inheritall="false" target="test">
             <property name="tests.output" value="${tests.output}"/>
         </ant>
     </target>