You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by va...@apache.org on 2007/08/16 08:58:04 UTC

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

Author: varlax
Date: Wed Aug 15 23:58:03 2007
New Revision: 566512

URL: http://svn.apache.org/viewvc?view=rev&rev=566512
Log:
Fixed hardcoded target dir in "copy_source"

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=566512&r1=566511&r2=566512
==============================================================================
--- harmony/enhanced/trunk/build.xml (original)
+++ harmony/enhanced/trunk/build.xml Wed Aug 15 23:58:03 2007
@@ -780,14 +780,14 @@
         <exec executable="svn">
             <arg value="export" />
             <arg value="." />
-            <arg value="target/src" />
+            <arg value="${target.dir}/src" />
         </exec>
         <exec executable="svn">
             <arg value="export" />
             <arg value="working_classlib/modules/concurrent/standard" />
-            <arg value="target/src/working_classlib/modules/concurrent/standard" />
+            <arg value="${target.dir}/src/working_classlib/modules/concurrent/standard" />
         </exec>
-        <echo file="target/src/release.properties">
+        <echo file="${target.dir}/src/release.properties">
 harmony.version=${harmony.version}
 harmony.long.version=${harmony.long.version}
 harmony.deploy.suffix=${harmony.deploy.suffix}