https://issues.apache.org/bugzilla/show_bug.cgi?id=49912
Summary: <filelist> dir attribute messes up UNC paths
Product: Ant
Version: 1.7.1
Platform: PC
Status: NEW
Severity: normal
Priority: P2
Component: Core tasks
AssignedTo: [email protected]
ReportedBy: [email protected]
If I run an ANT build file with something like this in it, and turn on verbose
logging:
<filelist dir="//IFSCONFIG/" id="peralex.libs1">
<file name="temp1\one.jar" />
</filelist>
<javac debug="on" destdir="${BuildClassDir}">
<src path="${BuildSrcDir}" />
<classpath>
<filelist refid="peralex.libs1" />
</classpath>
</javac>
I will get output like this:
[javac] Using modern compiler
dropping Z:\IFSCONFIG\temp1\one.jar from path as it doesn't exist
and my build fails because the javac compiler cannot find the library jar file.
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.