You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by na...@apache.org on 2010/10/25 11:52:39 UTC

svn commit: r1027016 - /tuscany/sca-java-1.x/trunk/samples/helloworld-bpel/build.xml

Author: nash
Date: Mon Oct 25 09:52:38 2010
New Revision: 1027016

URL: http://svn.apache.org/viewvc?rev=1027016&view=rev
Log:
Merge r998324 Fix code for "clean" target in build.xml files (TUSCANY-3680)

Modified:
    tuscany/sca-java-1.x/trunk/samples/helloworld-bpel/build.xml

Modified: tuscany/sca-java-1.x/trunk/samples/helloworld-bpel/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-1.x/trunk/samples/helloworld-bpel/build.xml?rev=1027016&r1=1027015&r2=1027016&view=diff
==============================================================================
--- tuscany/sca-java-1.x/trunk/samples/helloworld-bpel/build.xml (original)
+++ tuscany/sca-java-1.x/trunk/samples/helloworld-bpel/build.xml Mon Oct 25 09:52:38 2010
@@ -87,9 +87,7 @@
     </target>
     
     <target name="clean">
-        <delete includeemptydirs="true">
-            <fileset dir="target"/>
-        </delete>
+        <delete dir="target" includeemptydirs="true"/>
     </target>
 
 </project>