aboutsummaryrefslogtreecommitdiff
path: root/build2/rule.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-04-10 14:16:21 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-04-10 15:16:32 +0200
commit9bd1a1619e282c585b3f202d84790f8811d1e4d6 (patch)
tree50d7660f772c123b4f24d06119821215d7497718 /build2/rule.cxx
parent47ee9b8274cba0014afe59019d76613da8bb45d6 (diff)
Always use cached mtime if available
Besides other things, this is required for "logical clean" in the try-run mode to work properly: $ b -vn clean update
Diffstat (limited to 'build2/rule.cxx')
-rw-r--r--build2/rule.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/build2/rule.cxx b/build2/rule.cxx
index 79b91b3..a09e28b 100644
--- a/build2/rule.cxx
+++ b/build2/rule.cxx
@@ -55,8 +55,8 @@ namespace build2
timestamp ts (mt.mtime ());
- if (ts != timestamp_unknown && ts != timestamp_nonexistent)
- return true;
+ if (ts != timestamp_unknown)
+ return ts != timestamp_nonexistent;
// Otherwise, if this is not a path_target, then we don't match.
//
@@ -86,7 +86,7 @@ namespace build2
ts = mtime (*p);
pt->mtime (ts);
- if (ts != timestamp_unknown && ts != timestamp_nonexistent)
+ if (ts != timestamp_nonexistent)
return true;
l4 ([&]{trace << "no existing file for target " << *pt;});