Fix a number of things.

This commit is contained in:
Daniel Jones 2013-03-09 20:54:13 -08:00
parent 6e0d8979be
commit 8cbbe9c53c
7 changed files with 105 additions and 61 deletions

View file

@ -86,7 +86,7 @@ func dorecipe(target string, u *node, e *edge) bool {
prereqs = append(prereqs, u.prereqs[i].v.name)
}
}
vars["prereqs"] = prereqs
vars["prereq"] = prereqs
input := expandRecipeSigils(e.r.recipe, vars)
sh := "sh"
@ -113,8 +113,6 @@ func dorecipe(target string, u *node, e *edge) bool {
true,
false)
// TODO: update the timestamps of each target
return success
}