On 2010-02-24, Stefan Bodewig <[email protected]> wrote:
> Common to all those failures is something like this:
No, it's more complex and involves loading properties from a file where
one property references a different one defined in the same file.
++ file x.props ++
x=x
y=${x}
++ file x.xml ++
<project>
<property file="x.props"/>
<echo>x is ${x}</echo>
<echo>y is ${y}</echo>
</project>
using svn revision 912609:
$ ant -f x.xml -Dx=a
Buildfile: c:\Temp\x.xml
[echo] x is a
[echo] y is a
using svn revision 912610:
$ ant -f x.xml -Dx=a
Buildfile: c:\Temp\x.xml
[echo] x is a
[echo] y is x
so Peter is correct, it's been his latest change.
Stefan
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]