Hi,
I'm using Ant1.3 on Solaris with JDK1.3.0, and I'm getting the following
behaviour that I didn't expect. With the example below, when I call
"t1", which depends on "init" and antcall's "t2" which also depends on
"init", "init" gets called twice. Whereas if "t1" depends on "init,t2"
and the antcall is removed, "init" only gets called once.
<target name="init">
<echo>Init</echo>
</target>
<target name="t1" depends="init">
<antcall target="t2"/>
</target>
<target name="t2" depends="init">
</target>
Is this a bug (that may already be fixed because I know there have been
some changes to CallTarget since Ant 1.3), or the expected behaviour?
Thanks,
Andrew