>         <fileset dir=".." id="dir">
>             <include name="*"/>
>         </fileset>
>         <property name="dir.prop" refid="dir"/>
>         <echo message="${dir.prop}" file="foo"/>
>         <replace file="foo" token=";" value="&#x000A;"/>
>         <fixCRNL file="foo"/>

It's <fixcrlf>, not <fixcrnl>.

And you could also use <pathconvert>:

<pathconvert refid="my.dir" pathsep="${line.separator}"
  property="out.prop"/>
<echo message="${out.prop}"/>

You'll probably get absolute pathnames then.
(At least that's what I get.)

Michael

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@ant.apache.org
For additional commands, e-mail: user-h...@ant.apache.org

Reply via email to