> <fileset dir=".." id="dir">
> <include name="*"/>
> </fileset>
> <property name="dir.prop" refid="dir"/>
> <echo message="${dir.prop}" file="foo"/>
> <replace file="foo" token=";" value="
"/>
> <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: [email protected]
For additional commands, e-mail: [email protected]