You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2010/12/06 23:57:12 UTC

svn commit: r1042836 - /incubator/lcf/trunk/build.xml

Author: kwright
Date: Mon Dec  6 22:57:12 2010
New Revision: 1042836

URL: http://svn.apache.org/viewvc?rev=1042836&view=rev
Log:
A couple more build changes, having to do with image file naming and cleanup.

Modified:
    incubator/lcf/trunk/build.xml

Modified: incubator/lcf/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/build.xml?rev=1042836&r1=1042835&r2=1042836&view=diff
==============================================================================
--- incubator/lcf/trunk/build.xml (original)
+++ incubator/lcf/trunk/build.xml Mon Dec  6 22:57:12 2010
@@ -1,8 +1,10 @@
 <project name="manifoldcf" default="help">
 
     <target name="clean">
-        <delete file="apache-manifoldcf-*.zip"/>
-        <delete file="apache-manifoldcf-*.tar.gz"/>
+        <delete>
+          <fileset dir="." includes="apache-manifoldcf-*.zip"/>
+          <fileset dir="." includes="apache-manifoldcf-*.tar.gz"/>
+        </delete>
         <delete dir="build"/>
         <delete dir="dist"/>
         <delete dir="test-output"/>
@@ -1508,7 +1510,7 @@
     <target name="doc" depends="deliver-site-doc"/>
     
     <target name="set-version">
-      <property name="release-version" value="0.1"/>
+      <property name="release-version" value="0.1-incubator"/>
     </target>
     
     <target name="create-zip" depends="build,javadoc,doc,set-version">