On Mon, 25 Feb 2002, Mark Robinson <[EMAIL PROTECTED]>
wrote:

> could anyone explain why, given the build.xml below, i get this:

> all:
> Skipped because property '${env.MSDEVDIR}' not set.

>       <target name="all" if="${env.MSDEVDIR}">

because target's if attribute takes the name of a property, while
${foo} is the value of the property with name foo.

Make above

<target name="all" if="env.MSDEVDIR">

and it should work.

Stefan

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to