You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@etch.apache.org by di...@apache.org on 2009/02/11 17:56:29 UTC

svn commit: r743394 - /incubator/etch/trunk/examples/build.xml

Author: dixson
Date: Wed Feb 11 16:56:29 2009
New Revision: 743394

URL: http://svn.apache.org/viewvc?rev=743394&view=rev
Log:
update clean target for example/build.xml to clean submodules too

Modified:
    incubator/etch/trunk/examples/build.xml

Modified: incubator/etch/trunk/examples/build.xml
URL: http://svn.apache.org/viewvc/incubator/etch/trunk/examples/build.xml?rev=743394&r1=743393&r2=743394&view=diff
==============================================================================
--- incubator/etch/trunk/examples/build.xml (original)
+++ incubator/etch/trunk/examples/build.xml Wed Feb 11 16:56:29 2009
@@ -7,6 +7,10 @@
     <property name="target" location="${basedir}/target" />
     
     <target name="do-clean">
+        <build_example dir="chat" logdir="${basedir}/target/logs" />
+        <build_example dir="distmap" logdir="${basedir}/target/logs" />
+        <build_example dir="example" logdir="${basedir}/target/logs" />
+        <build_example dir="perf" logdir="${basedir}/target/logs" />
         <delete dir="${target}" failonerror="false" quiet="true" />
     </target>