Hi, I have been looking at http://issues.apache.org/bugzilla/show_bug.cgi?id=39920 and realized that the setting of ant.file.{projectname} is a little stange, if an imported project does not have a project name. For example: a.xml: <project/>
build.xml <project name="my-project"> <echo>ant.file.my-project is ${ant.file.my-project}</echo> <import file="a.xml"/> <echo>ant.file.my-project is ${ant.file.my-project}</echo> </project> The output is: [echo] ant.file.my-project is ....\build.xml [echo] ant.file.my-project is ....\a.xml Which is a little strange - it also makes using ant.file.{projectname} useless. I propose to change the logic slightly in that the "nameless" project will set the ant.file.null property always and not just when there is no current project name. Peter --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]