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/09/19 23:11:11 UTC

svn commit: r998733 - /harmony/enhanced/java/branches/java6/classlib/modules/x-tools/build.xml

Author: hindessm
Date: Sun Sep 19 21:11:11 2010
New Revision: 998733

URL: http://svn.apache.org/viewvc?rev=998733&view=rev
Log:
Add -Dbuild.x.tools=true flag while build break gets resolved.

Modified:
    harmony/enhanced/java/branches/java6/classlib/modules/x-tools/build.xml

Modified: harmony/enhanced/java/branches/java6/classlib/modules/x-tools/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/java6/classlib/modules/x-tools/build.xml?rev=998733&r1=998732&r2=998733&view=diff
==============================================================================
--- harmony/enhanced/java/branches/java6/classlib/modules/x-tools/build.xml (original)
+++ harmony/enhanced/java/branches/java6/classlib/modules/x-tools/build.xml Sun Sep 19 21:11:11 2010
@@ -27,7 +27,8 @@
     <property file="../../make/depends.properties" />
 
     <target name="build" depends="-build-no-check"/>
-    <target name="-build-no-check" depends="-build-jar,-test-jar" />
+    <target name="-build-no-check" depends="-build-jar,-test-jar"
+            if="build.x.tools" />
 
     <target name="test" depends="-test-module">
         <fail message="Some tests failed">
@@ -60,7 +61,7 @@
         <delete failonerror="false" dir="bin"/>
     </target>
 
-    <target name="-compile-java" unless="skip.java.build">
+    <target name="-compile-java" unless="skip.java.build" if="build.x.tools">
         <compile-classes description="${hy.module} classes">
             <javac-elements>
                 <src path="src/main/java" />
@@ -75,7 +76,7 @@
             outputFile="${findBugs.report}/${hy.module}.xml"/>
     </target>
 
-    <target name="-build-jar" unless="skip.java.build"
+    <target name="-build-jar" unless="skip.java.build" if="build.x.tools"
             depends="-svn-info,-compile-java,-class-patternset">
         <hy.jar.bin destfile="${hy.jdk}/jre/lib/boot/${hy.module}.jar"
                     manifest="META-INF/MANIFEST.MF">
@@ -88,7 +89,7 @@
         </hy.jar.src>
     </target>
 
-    <target name="-test-jar" unless="skip.test.build"
+    <target name="-test-jar" unless="skip.test.build" if="build.x.tools"
             depends="-svn-info,-compile-tests">
         <mkdir dir="${tests.hdk.dir}" />
         
@@ -109,7 +110,7 @@
         </copy>
     </target>
 
-    <target name="-compile-tests" unless="skip.test.build">
+    <target name="-compile-tests" unless="skip.test.build" if="build.x.tools">
         <compile-tests description="${hy.module} api tests">
             <javac-elements>
                 <src>