<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Dec 7, 2016 at 10:20 AM, René J.V. Bertin <span dir="ltr"><<a href="mailto:rjvbertin@gmail.com" target="_blank">rjvbertin@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div id=":1c1" class="a3s aXjCH m158d8cca9750a864">    variant python${pv} description "Add bindings for Python ${pdv}" {<br>
        depends_libs-append port:python${pv}<br>
        # snip<br>
    }<br></div></blockquote></div><br>tcl tends to encourage you to think that { } is a block construct, and in many languages that would close over the values of referenced variables. It's not. It's a quoted string, and the expansion of $pdv and/or $pv will be deferred until that quoted string is passed internally to tcl's eval. At that point, any values for those variables must come from elsewhere.</div><div class="gmail_extra"><br></div><div class="gmail_extra">Use a double quoted string and escape anything that needs it (but specifically not those variables for which you need the current value).<br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div>brandon s allbery kf8nh                               sine nomine associates</div><div><a href="mailto:allbery.b@gmail.com" target="_blank">allbery.b@gmail.com</a>                                  <a href="mailto:ballbery@sinenomine.net" target="_blank">ballbery@sinenomine.net</a></div><div>unix, openafs, kerberos, infrastructure, xmonad        <a href="http://sinenomine.net" target="_blank">http://sinenomine.net</a></div></div></div>
</div></div>