On Thu, Sep 3, 2009 at 14:15, <[email protected]> wrote: > <target name="a"/> > <target name="b" depends="a"/> > <target name="c" depends="a"/> > <target naem="d" depends="b,c"/> > > current output is > a: > b: > c: > d: > > What do you expect here? > >
If you call target d, I suspect? Well, a is called from b and c, and b is the first in the call chain. Ant will have resolved the fact that there's no need to call a from c, right? So that would be: ---- a (from b) (from d): b (from d): c (from d): d: ---- -- Francis Galiegue ONE2TEAM Ingénieur système Mob : +33 (0) 683 877 875 Tel : +33 (0) 178 945 552 [email protected] 40 avenue Raymond Poincaré 75116 Paris --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
