aboutsummaryrefslogtreecommitdiffstats
path: root/eval.cc
diff options
context:
space:
mode:
Diffstat (limited to 'eval.cc')
-rw-r--r--eval.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.cc b/eval.cc
index 511a606..44c436e 100644
--- a/eval.cc
+++ b/eval.cc
@@ -35,7 +35,7 @@ void Evaluator::EvalAssign(const AssignAST* ast) {
loc_ = ast->loc();
last_rule_ = NULL;
- const char* origin = "file";
+ const char* origin = is_bootstrap_ ? "default" : "file";
StringPiece lhs = Intern(*ast->lhs->Eval(this));
Var* rhs = NULL;