craigmcc    01/05/04 12:12:16

  Modified:    .        build.xml
  Log:
  Modify build script to omit the source code from the binary distribution,
  per agreement on the mailing lists.  The sources will always be available
  online in the usual place:
  
    http://jakarta.apache.org/builds/jakarta-struts/nightly/src/
  
  Revision  Changes    Path
  1.51      +0 -12     jakarta-struts/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/build.xml,v
  retrieving revision 1.50
  retrieving revision 1.51
  diff -u -r1.50 -r1.51
  --- build.xml 2001/05/03 01:05:48     1.50
  +++ build.xml 2001/05/04 19:12:13     1.51
  @@ -227,10 +227,7 @@
   -->
       <target name="prepare.dist" depends="init">
           <mkdir dir="${dist.home}"/>
  -        <mkdir dir="${dist.home}/etc"/>
           <mkdir dir="${dist.home}/lib"/>
  -        <mkdir dir="${dist.home}/src"/>
  -        <mkdir dir="${dist.home}/web"/>
           <mkdir dir="${dist.home}/webapps"/>
       </target>
   
  @@ -256,18 +253,9 @@
           Copy sources for distribution
   -->
       <target name="dist.source" depends="prepare.dist">
  -        <copy todir="${dist.home}/etc">
  -            <fileset dir="." includes="build.*"/>
  -        </copy>
           <copy file="INSTALL" tofile="${dist.home}/INSTALL"/>
           <copy file="LICENSE" tofile="${dist.home}/LICENSE"/>
           <copy file="README" tofile="${dist.home}/README"/>
  -        <copy todir="${dist.home}/src">
  -            <fileset dir="${src.dir}"/>
  -        </copy>
  -        <copy todir="${dist.home}/web">
  -            <fileset dir="${web.dir}"/>
  -        </copy>
       </target>
   
   <!--
  
  
  

Reply via email to