You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by co...@apache.org on 2001/10/01 10:17:40 UTC

cvs commit: jakarta-ant build.xml

conor       01/10/01 01:17:40

  Modified:    .        Tag: ANT_14_BRANCH build.xml
  Log:
  Stop image corruption - fix was on main branch - not 1.4
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.175.2.12 +9 -1      jakarta-ant/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/build.xml,v
  retrieving revision 1.175.2.11
  retrieving revision 1.175.2.12
  diff -u -w -u -r1.175.2.11 -r1.175.2.12
  --- build.xml	2001/09/30 12:31:42	1.175.2.11
  +++ build.xml	2001/10/01 08:17:40	1.175.2.12
  @@ -371,8 +371,16 @@
       <copy todir="${dist.lib}" file="${lib.dir}/optional/README"/>
       
       <copy todir="${dist.docs}">
  -      <fileset dir="${docs.dir}"/>
  +      <fileset dir="${docs.dir}">
  +        <exclude name="**/images/**"/>
  +      </fileset>
         <filterset refid="ant.filters"/>
  +    </copy>
  +
  +    <copy todir="${dist.docs}" filtering="false">
  +      <fileset dir="${docs.dir}">
  +        <include name="**/images/**"/>
  +      </fileset>
       </copy>
   
       <copy todir="${dist.dir}">