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=38878>.
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=38878

           Summary: fileset and copy create infinite loop
           Product: Ant
           Version: 1.6.3
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Core tasks
        AssignedTo: dev@ant.apache.org
        ReportedBy: [EMAIL PROTECTED]


The following buildfile appears to get itself stuck in some kind of infinite
loop, and the build never completes (i.e. the java process continues to use CPU,
but no activity occurs).

<?xml version="1.0" encoding="UTF-8"?>

<project basedir="." default="createInstall" name="Test">

   <fileset dir="V:\" id="peralex.libs">
      <filename name="Peralex\PDFSLibs.jar"/>
   </fileset>
    
   <target name="createInstall">
      <copy todir="C:\Incoming" overwrite="true" preservelastmodified="true">
        <fileset refid="peralex.libs" />
      </copy>
   </target>

</project>

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

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

Reply via email to