You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bu...@apache.org on 2004/11/19 20:30:52 UTC

DO NOT REPLY [Bug 32326] New: - Dependset does not function properly with filenames with spaces

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

           Summary: Dependset does not function properly with filenames with
                    spaces
           Product: Ant
           Version: 1.6.2
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Core tasks
        AssignedTo: dev@ant.apache.org
        ReportedBy: jgibson@mitre.org


In Apache Ant 1.6.2 on Windows XP SP2 the dependset task does not properly
detect filenames with spaces.

Assume that there are four files in ${basedir}:
sourcefile.txt
source file.txt
destfile.txt
dest file.txt

and that the source files are newer than the destination files.

This behaves as expected (destfile.txt is deleted).
<dependset>
	<srcfilelist dir="${basedir}" files="sourcefile.txt" />
	<targetfilelist dir="${basedir}" files="destfile.txt" />
</dependset>

This does not (dest file.txt is not deleted).
<dependset>
	<srcfilelist dir="${basedir}" files="source file.txt" />
	<targetfilelist dir="${basedir}" files="dest file.txt" />
</dependset>

-- 
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: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org