aboutsummaryrefslogtreecommitdiff
path: root/build2/rule.cxx
diff options
context:
space:
mode:
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;});