----- Original Message -----
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, October 02, 2000 8:00 AM
Subject: Re: if/unless at the task level?
> I don't think it makes sense conceptually. Targets are units
> of work in building a dependancy system.
And it make sense conceptually to be required to define targets like these?
<target name="vssHistoryAndLabel" unless="vss.result">
<antcall target="vssHistoryAndLabel-dummy"/>
</target>
<target name="vssHistoryAndLabel-dummy" unless="local">
<someWorkHere/>
</target>
These aren't 'units of work', these are ugly hacks to check for two
properties...
Nico