evmar / n2

n2 ("into"), a ninja compatible build system
Apache License 2.0
338 stars 26 forks source link

Variable expansion missing global reference #83

Closed evmar closed 1 year ago

evmar commented 1 year ago

https://github.com/evmar/n2/issues/39#issuecomment-1698323971

Distilled it to:

var = 123
rule custom
  command = $cmd $var
build out: custom
  cmd = echo $var hello

This runs echo hello 123 when it should run echo 123 hello 123