summaryrefslogtreecommitdiffstats
path: root/src/build.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/build.cc')
-rw-r--r--src/build.cc8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/build.cc b/src/build.cc
index d898929..574aecc 100644
--- a/src/build.cc
+++ b/src/build.cc
@@ -322,17 +322,13 @@ bool Plan::CheckDependencyCycle(Node* node, vector<Node*>* stack, string* err) {
if (ri == stack->rend())
return false;
- // Add this node onto the stack to make it clearer where the loop
- // is.
- stack->push_back(node);
-
vector<Node*>::iterator start = find(stack->begin(), stack->end(), node);
*err = "dependency cycle: ";
for (vector<Node*>::iterator i = start; i != stack->end(); ++i) {
- if (i != start)
- err->append(" -> ");
err->append((*i)->path());
+ err->append(" -> ");
}
+ err->append(node->path());
return true;
}