Leechael / project-babel

Automatically exported from code.google.com/p/project-babel
0 stars 0 forks source link

Create the extlib directory before fetch-lib ant target #9

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
when checkout the source, there are no extlib directory, so the first run 
{
ant fetch-lib
}
course error.

i found the fetch-lib target do not depends on the init target,just add a
depends is ok.

Index: /home/rory/projects/midgard/build.xml
===================================================================
--- /home/rory/projects/midgard/build.xml   (revision 261)
+++ /home/rory/projects/midgard/build.xml   (working copy)
@@ -126,7 +126,7 @@
   </target>

   <target name="fetch-extlib"
-        description="Get external libraries" >
+        description="Get external libraries" depends="init">
     <exec dir="${extlib}" executable="wget">
       <arg value="--input-file=${conf}/extlib.urls"/>
       <arg value="-nc"/>

Original issue reported on code.google.com by Rory...@gmail.com on 30 Aug 2007 at 2:07

GoogleCodeExporter commented 9 years ago
Thank you for submitting this issue.

Fixed in R296.

Original comment by v2ex.livid on 6 Oct 2007 at 10:03