You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2008/11/06 07:23:14 UTC

svn commit: r711774 - /ofbiz/trunk/common.xml

Author: doogie
Date: Wed Nov  5 22:23:14 2008
New Revision: 711774

URL: http://svn.apache.org/viewvc?rev=711774&view=rev
Log:
prepare no longer removes build/lib.

Modified:
    ofbiz/trunk/common.xml

Modified: ofbiz/trunk/common.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/common.xml?rev=711774&r1=711773&r2=711774&view=diff
==============================================================================
--- ofbiz/trunk/common.xml (original)
+++ ofbiz/trunk/common.xml Wed Nov  5 22:23:14 2008
@@ -31,19 +31,15 @@
     <!-- Removes all created files and directories                          -->
     <!-- ================================================================== -->
 
-    <target name="clean" depends="clean-lib">
+    <target name="clean">
         <delete dir="${build.dir}"/>
     </target>
-    
-    <target name="clean-lib">
-        <delete dir="${build.dir}/lib"/>
-    </target>
 
     <!-- ================================================================== -->
     <!-- Makes sure the needed directory structure is in place              -->
     <!-- ================================================================== -->
 
-    <target name="prepare" depends="clean-lib">
+    <target name="prepare">
         <mkdir dir="${build.dir}/classes"/>
         <mkdir dir="${build.dir}/lib"/>
     </target>