DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14698>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14698 resolve of properties inside of properties ------- Additional Comments From [EMAIL PROTECTED] 2002-11-21 07:45 ------- Please explain me the following results, because I don't understand what ant is doing here. Here is the build.xml: <?xml version="1.0" encoding="iso-8859-1"?> <project name="var-test" default="test" basedir="."> <property name="xx" value="yy"/> <property name="yy" value="zz"/> <target name="test"> <echo message="${${xx}-${xx}}"/> </target> </project> If ant wouldn't resolve properties recursively the result should be this: [echo] ${${xx}-${xx}} but it is: [echo] ${${xx}-yy} -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
