ehatcher    02/05/01 02:43:35

  Modified:    .        Tag: ANT_15_BRANCH build.xml
  Log:
  fix the mangling of images.  the .gif files in docs/manual/Integration are 
mangled in the beta distribution.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.304.2.2 +5 -7      jakarta-ant/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/build.xml,v
  retrieving revision 1.304.2.1
  retrieving revision 1.304.2.2
  diff -u -r1.304.2.1 -r1.304.2.2
  --- build.xml 30 Apr 2002 23:24:24 -0000      1.304.2.1
  +++ build.xml 1 May 2002 09:43:35 -0000       1.304.2.2
  @@ -52,6 +52,8 @@
     <property name="regexp.package" value="${util.package}/regexp"/>
   
     <property name="manifest" value="src/etc/manifest"/>
  +  
  +  <property name="unfiltered.files" value="**/*.gif,**/*.jpg,**/*.ico"/>
   
   
     <!--
  @@ -294,7 +296,7 @@
     </patternset>
     <patternset id="teststhatfail">
     </patternset>
  -
  +  
     <!--
          ===================================================================
            Check to see what optional dependencies are available
  @@ -756,16 +758,12 @@
       <copy todir="${dist.lib}" file="${lib.dir}/README"/>
   
       <copy todir="${dist.docs}">
  -      <fileset dir="${docs.dir}">
  -        <exclude name="**/images/**"/>
  -      </fileset>
  +      <fileset dir="${docs.dir}" excludes="${unfiltered.files}"/>
         <filterchain refid="ant.filters"/>
       </copy>
   
       <copy todir="${dist.docs}" filtering="false">
  -      <fileset dir="${docs.dir}">
  -        <include name="**/images/**"/>
  -      </fileset>
  +      <fileset dir="${docs.dir}" includes="${unfiltered.files}"/>
       </copy>
   
       <copy todir="${dist.dir}">
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to