After upgrading to v 1.1 most of my problems with wpkg variables went away.  However I still have one.  I can't use an environment variable within a wpkg variable in a check statement.  The following fails:<br><br><br>
<variable name='cygroot' value='%SYSTEMDRIVE%\cygwin' /><br><br><check type="file" condition="exists" path="%cygroot%\Cygwin.bat" /><br><br><br>The problem appears only when using nested variables.  These examples work fine:<br>
<br><br>
<variable name='cygroot' value='C:\cygwin\cygwin' /><br>
<br>
<check type="file" condition="exists" path="%cygroot%\Cygwin.bat" /><br><br><br>Or:<br><br>

<br>

<check type="file" condition="exists" path="%SYSTEMDRIVE%\cygwin\Cygwin.bat" /><br>
<br><br>