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/30 19:37:47 UTC

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

Author: hindessm
Date: Sat Oct 30 17:37:47 2010
New Revision: 1029131

URL: http://svn.apache.org/viewvc?rev=1029131&view=rev
Log:
Fix setup target to leave dependencies.

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=1029131&r1=1029130&r2=1029131&view=diff
==============================================================================
--- harmony/enhanced/java/trunk/build.xml (original)
+++ harmony/enhanced/java/trunk/build.xml Sat Oct 30 17:37:47 2010
@@ -683,7 +683,11 @@ Usage:
     <!-- recreates distribution dir                                     -->
     <!-- ============================================================== -->
     <target name="setup" depends="init, properties">
-        <delete dir="${hy.target}"/>
+        <delete includeemptydirs="true" failonerror="false">
+            <fileset dir="${hy.target}">
+                <exclude name="depends/**" />
+            </fileset>
+        </delete>
         <mkdir dir="${hy.target}"/>
     </target>