DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=29011>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=29011

Enhance the <copy/>-tag to support filesets for both source *and* destination





------- Additional Comments From [EMAIL PROTECTED]  2004-05-17 12:51 -------
As a work-around, you could try <for> from ant-contrib:
<project xmnls:ac="antlib:net.sf.antcontrib">
  <ac:for param="dir">
     <ac:path>
        <ac:dirset dir="." includes="*"/>
     </ac:path>
     <ac:sequential>
        <copy todir="@{dir}">
           <fileset .../>
         </copy>
     </ac:sequential>
   </ac:for>
</project>

or using a cvs head version of <for>
<project xmnls:ac="antlib:net.sf.antcontrib">
  <ac:for param="dir">
     <dirset dir="." includes="*"/>
     <ac:sequential>
        <copy todir="@{dir}">
           <fileset .../>
         </copy>
     </ac:sequential>
   </ac:for>
</project>

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

Reply via email to