diff options
-rw-r--r-- | libbuild2/adhoc-rule-buildscript.cxx | 4 | ||||
-rw-r--r-- | libbuild2/cc/compile-rule.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libbuild2/adhoc-rule-buildscript.cxx b/libbuild2/adhoc-rule-buildscript.cxx index 61a9e21..ab5706c 100644 --- a/libbuild2/adhoc-rule-buildscript.cxx +++ b/libbuild2/adhoc-rule-buildscript.cxx @@ -1159,7 +1159,7 @@ namespace build2 // Note that in case of dry run we will have an incomplete (but valid) // database which will be updated on the next non-dry run. // - if (!update || ctx.dry_run) + if (!update || ctx.dry_run_option) dd.close (false /* mtime_check */); else mdb->dd = dd.close_to_reopen (); @@ -1195,7 +1195,7 @@ namespace build2 md->deferred_failure); } - if (update && dd.reading () && !ctx.dry_run) + if (update && dd.reading () && !ctx.dry_run_option) dd.touch = timestamp_unknown; dd.close (false /* mtime_check */); diff --git a/libbuild2/cc/compile-rule.cxx b/libbuild2/cc/compile-rule.cxx index 24c59aa..efe712f 100644 --- a/libbuild2/cc/compile-rule.cxx +++ b/libbuild2/cc/compile-rule.cxx @@ -1488,7 +1488,7 @@ namespace build2 // to keep re-validating the file on every subsequent dry-run as well // on the real run). // - if (u && dd.reading () && !ctx.dry_run) + if (u && dd.reading () && !ctx.dry_run_option) dd.touch = timestamp_unknown; dd.close (false /* mtime_check */); |