On 4/13/07, Philip Swenson <[EMAIL PROTECTED]> wrote:
I have a property that is declared like this: <property name="is.dev.home" value="${env.IS_DEV_HOME}"/>
You must wrap your <property> above inside a <target name="..." if="env.IS_DEV_HOME" unless="is.dev.home">, to only set is.dev.home when it's not already set, and only when IS_DEV_HOME env. var does exist. Or use Ant-Contrib's <ac:if> to avoid the additional <target>, with the <isset> condition. --DD --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]