You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by ge...@apache.org on 2006/07/20 14:52:57 UTC

svn commit: r423921 - /incubator/harmony/enhanced/drlvm/trunk/build/make/build.xml

Author: geirm
Date: Thu Jul 20 05:52:57 2006
New Revision: 423921

URL: http://svn.apache.org/viewvc?rev=423921&view=rev
Log:
tweak to how the CLASSLIB is setup so 

a) it's absolute

b) the location is overridable externally


Modified:
    incubator/harmony/enhanced/drlvm/trunk/build/make/build.xml

Modified: incubator/harmony/enhanced/drlvm/trunk/build/make/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/make/build.xml?rev=423921&r1=423920&r2=423921&view=diff
==============================================================================
--- incubator/harmony/enhanced/drlvm/trunk/build/make/build.xml (original)
+++ incubator/harmony/enhanced/drlvm/trunk/build/make/build.xml Thu Jul 20 05:52:57 2006
@@ -60,7 +60,11 @@
     <target name="extern_dep">
 
         <!-- set the path root for the classlib : must be relative to the build directory -->
-        <property name="external.dep.CLASSLIB" value="../../../../classlib/trunk" />
+        <property name="external.dep.CLASSLIB.loc" value="../../../../classlib/trunk" />
+
+        <property name="external.dep.CLASSLIB" location="${external.dep.CLASSLIB.loc}" />
+
+        <echo> Using CLASSLIB = ${external.dep.CLASSLIB}</echo>
 
         <!-- some derived values -->
         <property name="external.dep.CLASSLIB.includes" value="${external.dep.CLASSLIB}/deploy/include" />