projects
/
platform
/
upstream
/
ninja.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b209096
)
minor: removing noop call to MarkDirty(), fixing comment
author
Maxim Kalaev
<maximus.ka@gmail.com>
Fri, 28 Jun 2013 17:48:30 +0000
(20:48 +0300)
committer
Nico Weber
<nicolasweber@gmx.de>
Sat, 20 Jul 2013 04:45:43 +0000
(21:45 -0700)
src/build.cc
patch
|
blob
|
history
diff --git
a/src/build.cc
b/src/build.cc
index
52dac87
..
2fbfdec
100644
(file)
--- a/
src/build.cc
+++ b/
src/build.cc
@@
-431,14
+431,13
@@
void Plan::CleanNode(DependencyScan* scan, Node* node) {
if (scan->RecomputeOutputDirty(*ei, most_recent_input, 0,
command, *ni)) {
- (*ni)->MarkDirty();
all_outputs_clean = false;
} else {
CleanNode(scan, *ni);
}
}
- // If we cleaned all outputs, mark the
nod
e as not wanted.
+ // If we cleaned all outputs, mark the
edg
e as not wanted.
if (all_outputs_clean) {
want_i->second = false;
--wanted_edges_;