remm        01/09/17 20:29:26

  Modified:    .        build.xml
  Log:
  - Fix a problem with build script where the dist-source target (which is only used
    when packaging a release) would also copy the binaries.
  
  Revision  Changes    Path
  1.39      +2 -2      jakarta-tomcat-4.0/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/build.xml,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -r1.38 -r1.39
  --- build.xml 2001/09/16 05:41:40     1.38
  +++ build.xml 2001/09/18 03:29:26     1.39
  @@ -163,8 +163,8 @@
       <mkdir  dir="${tomcat.dist}/src"/>
       <copy todir="${tomcat.dist}/src">
         <fileset dir=".">
  -        <exclude name="build/**"/>
  -        <exclude name="dist/**"/>
  +        <exclude name="**/build/**"/>
  +        <exclude name="**/dist/**"/>
         </fileset>
       </copy>
     </target>
  
  
  

Reply via email to