[pkg-eucalyptus-commits] r223 - gwt/trunk/debian

Chris Halls halls at alioth.debian.org
Wed Jul 4 12:08:41 UTC 2012


Author: halls
Date: 2012-07-04 12:08:41 +0000 (Wed, 04 Jul 2012)
New Revision: 223

Modified:
   gwt/trunk/debian/build.xml
Log:
Fix clean target

The subdirectory build files expect to see some targets there,
so create some empty directories/files if necessary.

Modified: gwt/trunk/debian/build.xml
===================================================================
--- gwt/trunk/debian/build.xml	2012-07-04 12:08:37 UTC (rev 222)
+++ gwt/trunk/debian/build.xml	2012-07-04 12:08:41 UTC (rev 223)
@@ -10,7 +10,11 @@
 
   <target name="clean">
     <ant dir="dev/" target="clean" />
+    <!-- These targets fail if there is no gwt jar -->
+    <touch file="${target.dir}/gwt-dev-${artifactVersion}.jar" mkdirs="true"/>
+    <touch file="${basedir}/build/out/dev/bin" mkdirs="true"/>
     <ant dir="user/" target="clean" />
+    <touch file="${basedir}/build/out/user/bin" mkdirs="true"/>
     <ant dir="servlet/" target="clean" />
     <delete dir="build"/>
     <delete dir="${target.dir}"/>




More information about the pkg-eucalyptus-commits mailing list