aboutsummaryrefslogtreecommitdiff
path: root/build2/cli
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-11-19 14:58:20 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-11-19 14:58:20 +0200
commitac5ef35b5fa8b938ed427df4b0ad44e5b6b52cff (patch)
treefa1544e9ba088d4e054a095eec6a196502361d4e /build2/cli
parent5136a6b723e2eeb27718747f1bfd822d0e790b86 (diff)
Finalize workaround for backwards modification time issue
Diffstat (limited to 'build2/cli')
-rw-r--r--build2/cli/rule.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/build2/cli/rule.cxx b/build2/cli/rule.cxx
index 27668c1..6c87490 100644
--- a/build2/cli/rule.cxx
+++ b/build2/cli/rule.cxx
@@ -262,7 +262,7 @@ namespace build2
// Update if depdb mismatch.
//
- if (dd.writing () || dd.mtime () > mt)
+ if (dd.writing () || dd.mtime > mt)
update = true;
dd.close ();