Hi all, I'm new to Ant but I've read the documentation. I wanted to confirm something to solidify my understanding of the "depends" attribute. In someone else's build script I saw this:
<target name="A" depends="B,C"> <!-- other stuff --> </target> <target name="B" depends="C"> <!-- other stuff --> </target> <target name="C"> <!-- other stuff --> </target> Since B already depends on C, A's "depends" attribute could be changed to simply "depends='B'", am I correct? Thanks... Tony -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
