You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@abdera.apache.org by jm...@apache.org on 2006/07/07 00:49:07 UTC

svn commit: r419731 - /incubator/abdera/java/trunk/build/build.xml

Author: jmsnell
Date: Thu Jul  6 15:49:06 2006
New Revision: 419731

URL: http://svn.apache.org/viewvc?rev=419731&view=rev
Log:
Whoops. It would help to create the directory before I attempt to download into it.
Also, the "retro" target needs to depend on the "dist" target.

Modified:
    incubator/abdera/java/trunk/build/build.xml

Modified: incubator/abdera/java/trunk/build/build.xml
URL: http://svn.apache.org/viewvc/incubator/abdera/java/trunk/build/build.xml?rev=419731&r1=419730&r2=419731&view=diff
==============================================================================
--- incubator/abdera/java/trunk/build/build.xml (original)
+++ incubator/abdera/java/trunk/build/build.xml Thu Jul  6 15:49:06 2006
@@ -246,7 +246,7 @@
     </copy>
   </target>
   
-	<target name="retro" >
+	<target name="retro" depends="dist">
 		<property name="retrozip" value="${basedir}/build/tools/${retroweaver.zip}" />
 		<property name="retro" value="${basedir}/build/tools/retroweaver-1.2.3" />
 		<property name="retro_core.jar" value="${dist}/${ant.project.name}.core.${version}.retro.jar" />
@@ -278,6 +278,7 @@
 	
 	<target name="go_retro" if="do.download.retroweaver">
 		<echo>Downloading Retroweaver...</echo>
+		<mkdir dir="${basedir}/build/tools" />
 		<get src="${retroweaver.dir}/${retroweaver.zip}"
 		     dest="${basedir}/build/tools/${retroweaver.zip}"
 		     usetimestamp="true" />