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 2005/01/07 11:58:40 UTC

DO NOT REPLY [Bug 32989] - Reference to fileset does not work as expected

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





------- Additional Comments From peterreilly@apache.org  2005-01-07 11:58 -------
Could you include a small build file that shows the problem.

I did the following test:
  <target name="ref">
    <path>
      <fileset id="fileset.1" dir="/home/preilly" includes=".bashrc"/>
    </path>
    <fileset id="fileset.2" dir="/home/preilly" includes=".bashrc"/>
    <pathconvert property="path.1" refid="fileset.1" targetos="unix"/>
    <pathconvert property="path.2" refid="fileset.2" targetos="unix"/>
    <echo>path.1 is ${path.1}</echo>
    <echo>path.2 is ${path.2}</echo>
  </target>

and got the result:
ref:
     [echo] path.1 is /home/preilly/.bashrc
     [echo] path.2 is /home/preilly/.bashrc


-- 
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