Skip to content
Snippets Groups Projects
Forked from Iris / Iris
Source project has a limited visibility.
  • Tej Chajed's avatar
    c96e5786
    Use simple variables in Makefile · c96e5786
    Tej Chajed authored
    var=foo is a "recursive variable assignment", which is expanded on every
    use (including re-running shell commands). What we really want is
    var:=foo, which is expanded at definition time.
    Use simple variables in Makefile
    Tej Chajed authored
    var=foo is a "recursive variable assignment", which is expanded on every
    use (including re-running shell commands). What we really want is
    var:=foo, which is expanded at definition time.