--- Stefan Bodewig <[EMAIL PROTECTED]> wrote: > The things that are still broken: > > (1) You can throw Ant into an infinite loop with <ant> or <antcall> at > the top level calling the same build file [...]
You can already do that: <project default="infinite"> <target name="tagback"> <echo>"Tag back!"</echo> <antcall target="infinite"/> </target> <target name="infinite"> <echo>"You're it!"</echo> <antcall target="tagback"/> </target> </project> Diane ===== ([EMAIL PROTECTED]) __________________________________________________ Do You Yahoo!? Yahoo! Autos - Get free new car price quotes http://autos.yahoo.com -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>