conor       01/03/04 19:00:58

  Modified:    .        build.xml
  Log:
  Quick fix to get nightly builds working again.
  
  Revision  Changes    Path
  1.140     +12 -4     jakarta-ant/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/build.xml,v
  retrieving revision 1.139
  retrieving revision 1.140
  diff -u -r1.139 -r1.140
  --- build.xml 2001/03/02 23:08:28     1.139
  +++ build.xml 2001/03/05 03:00:57     1.140
  @@ -290,7 +290,13 @@
            Create the complete distribution
          ===================================================================
     -->
  -  <target name="dist" depends="dist-lite,javadocs">
  +  <target name="dist">
  +    <antcall target="internal_dist">
  +      <param name="dist.dir" value="${dist.name}" />
  +    </antcall>
  +  </target>  
  +  
  +  <target name="internal_dist" depends="dist-lite,javadocs">
       <mkdir dir="${dist.docs}"/>
       <mkdir dir="${dist.javadocs}"/>
   
  @@ -397,7 +403,7 @@
     <target name="distribution">
       <mkdir dir="${dist.base}"/>
   
  -    <antcall target="dist">
  +    <antcall target="internal_dist">
         <param name="dist.dir" value="${dist.name}" />
       </antcall>
       <zip zipfile="${dist.base}/${dist.name}-bin.zip" 
  @@ -624,6 +630,8 @@
            Main target - runs dist-lite by default                             
                  
          =================================================================== 
     -->
  -  <target name="main" depends="dist-lite"/>
  -
  +  <target name="main">
  +    <antcall target="dist-lite"/>
  +  </target>
  +  
   </project>
  
  
  

Reply via email to