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/06/07 10:59:50 UTC

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

Author: hindessm
Date: Mon Jun  7 08:59:50 2010
New Revision: 952150

URL: http://svn.apache.org/viewvc?rev=952150&view=rev
Log:
Remove build steps that waste time doing nothing at all.

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

Modified: harmony/enhanced/java/trunk/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/trunk/build.xml?rev=952150&r1=952149&r2=952150&view=diff
==============================================================================
--- harmony/enhanced/java/trunk/build.xml (original)
+++ harmony/enhanced/java/trunk/build.xml Mon Jun  7 08:59:50 2010
@@ -116,7 +116,6 @@ Usage:
         depends="properties,
                  build-classlib,
                  build-vm,
-                 build-commonresources,
                  build-jdktools,
                  assemble-artifacts"/>
     
@@ -166,14 +165,12 @@ Usage:
         description="Fetches dependencies. Note: Some of Harmony dependencies are licensed under terms other than the Apache License v2."
         depends="fetch-classlib-libs,
                  fetch-vm-libs,
-                 fetch-commonresources,
                  fetch-jdktools-libs"/>
 
     <target name="check-depends"
         description="Checks dependencies."
         depends="check-classlib-libs,
                  check-vm-libs,
-                 check-commonresources,
                  check-jdktools-libs"/>
 
     <target name="bundle-hdk-tgz" depends="init" if="is.unix">
@@ -577,38 +574,6 @@ Usage:
     </target>
 
     <!-- ============================================================== -->
-    <!-- fetches the common resources                                   -->
-    <!-- ============================================================== -->
-    <target name="build-commonresources"
-            depends="init,auto-fetch-commonresources"/>
-
-    <target name="auto-fetch-commonresources" if="auto.fetch">
-        <ant target="fetch-commonresources">
-            <propertyset refid="required.props" />
-            <property name="svn.info" value="${harmony.long.version}"/>
-            <property name="svn.revision" value="${harmony.version}"/>
-        </ant>
-    </target>
-
-    <target name="fetch-commonresources">
-        <ant antfile="common_resources/build.xml" target="fetch-depends"
-             inheritall="false" >
-            <propertyset refid="required.props" />
-            <property name="svn.info" value="${harmony.long.version}"/>
-            <property name="svn.revision" value="${harmony.version}"/>
-        </ant>
-    </target>
-
-    <target name="check-commonresources">
-        <ant antfile="common_resources/build.xml" target="check-depends"
-             inheritall="false" >
-            <propertyset refid="required.props" />
-            <property name="svn.info" value="${harmony.long.version}"/>
-            <property name="svn.revision" value="${harmony.version}"/>
-        </ant>
-    </target>
-
-    <!-- ============================================================== -->
     <!-- ensures dependencies are up to date, then builds jdktools      -->
     <!-- ============================================================== -->
     <target name="build-jdktools"