Matt Benson wrote:

I can't imagine a scenario where BC would be
compromised, but I'd be glad for an example.

-Matt



I was thinking of the example with multiple import files with
the same projectname/targetname.

example:
a.xml <project><target name="t"><echo>a.xml</echo></target></project>
b.xml <project><target name="t"><echo>b.xml</echo></target></project>
c.xml <project><target name="t"><echo>c.xml</echo></target></project>
build.xml
<project name="p">
  <import file="a.xml"/>
  <import file="b.xml"/>
  <import file="c.xml"/>
</project>

In this case, ant 1.6.x (and my patch) will output.

ant t
 will output "a.xml"
ant p.t
 will output "c.xml"



Peter


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to