diff options
Diffstat (limited to 'build2/operation.cxx')
-rw-r--r-- | build2/operation.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/build2/operation.cxx b/build2/operation.cxx index 60555b1..ca8382c 100644 --- a/build2/operation.cxx +++ b/build2/operation.cxx @@ -105,7 +105,8 @@ namespace build2 // scheduler::monitor_guard mg; string what; - if (ops.progress ()) + if (ops.progress () || + (stderr_term && verb >= 1 && verb <= 2 && !ops.no_progress ())) { size_t init (target_count.load (memory_order_relaxed)); size_t incr (init > 100 ? 10 : 1); @@ -251,7 +252,7 @@ namespace build2 // scheduler::monitor_guard mg; string what; - if (ops.progress ()) + if (ops.progress () || (stderr_term && verb == 1 && !ops.no_progress ())) { size_t init (target_count.load (memory_order_relaxed)); size_t incr (init / 100); // 1%. |