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/05 20:27:21 UTC

svn commit: r941415 - in /harmony/enhanced/java/branches/mrh: build.xml classlib/build.xml

Author: hindessm
Date: Wed May  5 18:27:21 2010
New Revision: 941415

URL: http://svn.apache.org/viewvc?rev=941415&view=rev
Log:
Fixing some dependencies.

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

Modified: harmony/enhanced/java/branches/mrh/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/build.xml?rev=941415&r1=941414&r2=941415&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/build.xml (original)
+++ harmony/enhanced/java/branches/mrh/build.xml Wed May  5 18:27:21 2010
@@ -463,12 +463,10 @@ Usage:
         </ant>
     </target>
 
-    <target name="init-classlib-hdk">
+    <target name="-init-classlib-hdk-for-clean">
         <ant antfile="classlib/build.xml"
-                target="-init-hdk" inheritAll="false" >
+             target="-init-hdk-for-clean" inheritAll="false" >
             <propertyset refid="required.props" />
-            <property name="svn.info" value="${harmony.long.version}"/>
-            <property name="svn.revision" value="${harmony.version}"/>
             <property name="keep.working" value="true" />
         </ant>
     </target>
@@ -613,7 +611,7 @@ Usage:
 
 
     <target name="clean"
-        depends="init-classlib-hdk,
+        depends="-init-classlib-hdk-for-clean,
                  clean-jdktools,
                  clean-classlib,
                  clean-vm,

Modified: harmony/enhanced/java/branches/mrh/classlib/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/build.xml?rev=941415&r1=941414&r2=941415&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/build.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/build.xml Wed May  5 18:27:21 2010
@@ -177,7 +177,7 @@ module:
         </hy.javac>
     </target>
 
-    <target name="-build-modules">
+    <target name="-build-modules" depends="-svn-info">
         <poll-modules target="-build-no-check" />
     </target>
 
@@ -310,7 +310,7 @@ ${built.files.list}
     </target>
 
     <target name="-build-native" unless="skip.native.build"
-            depends="-init-hdk,-layout-natives"
+            depends="-init-hdk,-svn-info,-layout-natives"
             description="Compiles the native code only" >
 
         <!-- these must be run in a specific order due to dependencies -->
@@ -597,7 +597,7 @@ Generating snapshot zip
 
     <!-- hdk initialisation -->
 
-    <target name="-init-hdk" depends="-svn-info">
+    <target name="-init-hdk">
         <init-hdk />
     </target>