DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5270>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5270 Ant task - allow multiple targets ------- Additional Comments From [EMAIL PROTECTED] 2002-04-14 22:32 ------- It would be nice if this patch executed the targets within one global dependency check, instead of re-evaluating dependencies again and again for each target. In other words: <ant target="a, b, c, d" .../> should not behave like: <ant target="a" .../> <ant target="b" .../> <ant target="c" .../> <ant target="d" .../> but it should behave like: <ant target="abcd" .../> where "abcd" is defined like: <target name="abcd" depends="a, b, c, d"/> this is a much more powerful behaviour. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
