You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by sm...@apache.org on 2007/04/17 12:18:48 UTC

svn commit: r529549 - /harmony/enhanced/trunk/build.xml

Author: smishura
Date: Tue Apr 17 03:18:42 2007
New Revision: 529549

URL: http://svn.apache.org/viewvc?view=rev&rev=529549
Log:
Add switch for classlib's java6 branch

Modified:
    harmony/enhanced/trunk/build.xml

Modified: harmony/enhanced/trunk/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/trunk/build.xml?view=diff&rev=529549&r1=529548&r2=529549
==============================================================================
--- harmony/enhanced/trunk/build.xml (original)
+++ harmony/enhanced/trunk/build.xml Tue Apr 17 03:18:42 2007
@@ -24,7 +24,11 @@
     <property name="target.dir" value="target" />
 
     <!-- SVN URL for classlib default -->
-    <property name="classlib.svn.url" value="https://svn.apache.org/repos/asf/harmony/enhanced/classlib/trunk" />
+    <condition property="classlib.svn.url"
+               value="https://svn.apache.org/repos/asf/harmony/enhanced/classlib/branches/java6-branch"
+               else="https://svn.apache.org/repos/asf/harmony/enhanced/classlib/trunk">
+        <isset property="java6" />
+    </condition>
 
     <!-- SVN URL for VM default -->
     <property name="vm.svn.url" value="https://svn.apache.org/repos/asf/harmony/enhanced/drlvm/trunk" />