>>>>> "RB" == Ross Burton <[EMAIL PROTECTED]> writes:

 RB> I just needed a way of saying (prop1 && prop2), but
 RB> didn't really think about all of the other options.  Without
 RB> allowing full use of && and || , there is no simple answer.

Hmm, ANDing can be done via

<target name="outer" if="cond1" depends="inner" />

<target name="inner" if="cond2">
...
</target>

It's not elegant though.

Stefan

Reply via email to