summaryrefslogtreecommitdiffstats
path: root/src/graph.cc
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2013-04-10 19:10:10 (GMT)
committerEvan Martin <martine@danga.com>2013-04-10 19:10:10 (GMT)
commit808393fcf01d5211ab062acd3dea46ed8041f829 (patch)
tree8888a7b57bac7e94cd3b229cc69fa1f3f346c130 /src/graph.cc
parent07f16eb41e9c266fe402a816c5e54f7479ca7fd4 (diff)
downloadNinja-808393fcf01d5211ab062acd3dea46ed8041f829.zip
Ninja-808393fcf01d5211ab062acd3dea46ed8041f829.tar.gz
Ninja-808393fcf01d5211ab062acd3dea46ed8041f829.tar.bz2
include mtimes in deplog explain
Diffstat (limited to 'src/graph.cc')
-rw-r--r--src/graph.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/graph.cc b/src/graph.cc
index 2614882..b245e52 100644
--- a/src/graph.cc
+++ b/src/graph.cc
@@ -187,7 +187,8 @@ bool DependencyScan::RecomputeOutputDirty(Edge* edge,
// Dirty if the output is newer than the deps.
if (deps_mtime && output->mtime() > deps_mtime) {
- EXPLAIN("stored deps info out of date for for %s", output->path().c_str());
+ EXPLAIN("stored deps info out of date for for %s (%d vs %d)",
+ output->path().c_str(), deps_mtime, output->mtime());
return true;
}