From 79ee1b724a324e65c21a59f066bda5053306727a Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 7 Nov 2022 07:08:46 +0200 Subject: Tweak match progress reporting for serial execution --- libbuild2/operation.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libbuild2') diff --git a/libbuild2/operation.cxx b/libbuild2/operation.cxx index 3c7aee4..4146b57 100644 --- a/libbuild2/operation.cxx +++ b/libbuild2/operation.cxx @@ -277,7 +277,9 @@ namespace build2 // the up-to-date check on some projects (e.g., Boost). So we jump // through a few hoops to make sure we don't overindulge. // - md.incr = stderr_term ? 5 : 100; // Scale depending on output type. + md.incr = stderr_term // Scale depending on output type. + ? (ctx.sched.serial () ? 1 : 5) + : 100; md.what = " targets to " + diag_do (ctx, a); mg = ctx.sched.monitor ( -- cgit v1.1