You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by ds...@apache.org on 2009/10/01 15:17:53 UTC

svn commit: r820645 - /felix/trunk/sigil/build.xml

Author: dsavage
Date: Thu Oct  1 13:17:53 2009
New Revision: 820645

URL: http://svn.apache.org/viewvc?rev=820645&view=rev
Log:
workaround for (FELIX-1676) explicitly delete the temporary artifacts related to sigil

Modified:
    felix/trunk/sigil/build.xml

Modified: felix/trunk/sigil/build.xml
URL: http://svn.apache.org/viewvc/felix/trunk/sigil/build.xml?rev=820645&r1=820644&r2=820645&view=diff
==============================================================================
--- felix/trunk/sigil/build.xml (original)
+++ felix/trunk/sigil/build.xml Thu Oct  1 13:17:53 2009
@@ -34,7 +34,8 @@
     <subant buildpath="bldcommon/prepare" target="resolve" />
   </target>
 
-  <target name="dist" depends="build, site" />
+  <!--target name="dist" depends="build, site" /-->
+  <target name="dist" depends="build" />
 
   <target name="clean" depends="clean-list, clean-site, clean-tmp" />
 
@@ -83,8 +84,13 @@
     <echo>${cache.dir}</echo>
     <delete includeemptydirs="true">
      <fileset dir="${cache.dir}" includes="all/org.apache-felix.sigil*"/>
-     <fileset dir="${cache.dir}" includes="all/org.apache/felix.sigil*"/>
+     <fileset dir="${cache.dir}" includes="all/org.apache/felix.sigil*/**"/>
      <fileset dir="${cache.dir}" includes="all/resolved-org.apache-felix.sigil*"/>
     </delete>
+    <delete includeemptydirs="true">
+     <dirset dir="${cache.dir}">
+       <include name="all/org.apache/felix.sigil*"/>
+     </dirset>
+    </delete>
   </target>
 </project>