diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-11-28 10:21:09 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-11-28 10:21:09 +0200 |
commit | 2908afbd6a9222b718c0f910edfbe2fc5943aad8 (patch) | |
tree | 91034caec661793da4c5368dd0a00431c3701d8a /libbuild2/adhoc-rule-buildscript.cxx | |
parent | a50652b3e3323a9492c32d2ca6e97befd7d9755b (diff) |
Avoid unnecessary work in depdb::close() if using static check_mtime()
Diffstat (limited to 'libbuild2/adhoc-rule-buildscript.cxx')
-rw-r--r-- | libbuild2/adhoc-rule-buildscript.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/adhoc-rule-buildscript.cxx b/libbuild2/adhoc-rule-buildscript.cxx index e8bc20d..b981b8d 100644 --- a/libbuild2/adhoc-rule-buildscript.cxx +++ b/libbuild2/adhoc-rule-buildscript.cxx @@ -505,7 +505,7 @@ namespace build2 if (update && dd.reading () && !ctx.dry_run) dd.touch = timestamp_unknown; - dd.close (); + dd.close (false /* mtime_check */); md->dd = move (dd.path); // Pass on base scope and update/mtime. |