On Thu, Sep 3, 2009 at 14:15, <
Jan.Materne@rzf....> 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
fge@one2...
40 avenue Raymond Poincaré
75116 Paris
---------------------------------------------------------------------
To unsubscribe, e-mail:
user-unsubscribe@ant....
For additional commands, e-mail:
user-help@ant....
opensubscriber is not affiliated with the authors of this message nor responsible for its content.