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/26 10:36:10 UTC

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

Author: hindessm
Date: Tue Oct 26 08:36:10 2010
New Revision: 1027403

URL: http://svn.apache.org/viewvc?rev=1027403&view=rev
Log:
Quick fix for build break.

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=1027403&r1=1027402&r2=1027403&view=diff
==============================================================================
--- harmony/enhanced/java/trunk/build.xml (original)
+++ harmony/enhanced/java/trunk/build.xml Tue Oct 26 08:36:10 2010
@@ -175,13 +175,15 @@ Usage:
     <!-- ============================================================== -->
     <target name="fetch-depends"
         description="Fetches dependencies for all components. Note: Some of Harmony dependencies are licensed under terms other than the Apache License v2."
-        depends="fetch-depends-classlib,
+        depends="-init-hdk,
+                 fetch-depends-classlib,
                  fetch-depends-vm,
                  fetch-depends-jdktools"/>
 
     <target name="check-depends"
         description="Checks dependencies for all components."
-        depends="check-depends-classlib,
+        depends="-init-hdk,
+                 check-depends-classlib,
                  check-depends-vm,
                  check-depends-jdktools"/>