From 934c157361eabf6d440c95d575aba24ebf1b445f Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 28 Oct 2016 17:44:44 +0200 Subject: Don't print "while updating ..." in quiet mode --- build2/algorithm.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'build2/algorithm.cxx') diff --git a/build2/algorithm.cxx b/build2/algorithm.cxx index 2a5b2d2..5d0e010 100644 --- a/build2/algorithm.cxx +++ b/build2/algorithm.cxx @@ -359,7 +359,9 @@ namespace build2 [a, &t]() { t.raw_state = target_state::failed; - info << "while " << diag_doing (a, t); + + if (verb != 0) + info << "while " << diag_doing (a, t); })); target_state ts (t.recipe (a) (a, t)); -- cgit v1.1