leif        02/01/27 19:12:31

  Modified:    .        build.xml
  Log:
  Fix problem where images for docs were being copied with filtering on.
  
  Revision  Changes    Path
  1.64      +9 -12     jakarta-avalon-logkit/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-logkit/build.xml,v
  retrieving revision 1.63
  retrieving revision 1.64
  diff -u -r1.63 -r1.64
  --- build.xml 28 Jan 2002 03:02:48 -0000      1.63
  +++ build.xml 28 Jan 2002 03:12:31 -0000      1.64
  @@ -443,21 +443,18 @@
       <filter token="LOGKIT_BASE" value="${logkit.base}"/>
       <filter token="TESTLET_BASE" value="${testlet.base}"/>
   
  -    <copy todir="${build.context}" filtering="on">
  +    <copy todir="${build.context}" overwrite="true" filtering="on">
         <fileset dir="${context.dir}">
  -        <exclude name="resources/**"/>
  -        <exclude name="xdocs/**"/>
  +        <exclude name="**/*.gif"/>
  +        <exclude name="**/*.jpg"/>
  +        <exclude name="**/*.png"/>
         </fileset>
       </copy>
  -
  -    <copy todir="${build.context}/xdocs" filtering="on" overwrite="yes">
  -      <fileset dir="${xdocs.dir}"/>
  -    </copy>
  -
  -    <copy todir="${build.context}/resources" filtering="off" overwrite="yes">
  -      <fileset dir="${context.dir}/resources"/>
  -      <fileset dir="${xdocs.dir}">
  -        <include name="**/images/**"/>
  +    <copy todir="${build.context}" filtering="off">
  +      <fileset dir="${context.dir}">
  +        <include name="**/*.gif"/>
  +        <include name="**/*.jpg"/>
  +        <include name="**/*.png"/>
         </fileset>
       </copy>
   
  
  
  

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

Reply via email to