aboutsummaryrefslogtreecommitdiff
path: root/build/install/rule.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-09-08 10:56:32 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-09-08 10:56:32 +0200
commiteb264e1892c2a1379fa3bcab9aefea219e8e7138 (patch)
tree1031f859076b2d8f117a2948ec1184a5536f9cbc /build/install/rule.cxx
parent55471ef43695408bae2237374be4637c302d1c87 (diff)
Rework diagnostics verbosity, add quiet mode/option
Diffstat (limited to 'build/install/rule.cxx')
-rw-r--r--build/install/rule.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/build/install/rule.cxx b/build/install/rule.cxx
index b1627be..64df3eb 100644
--- a/build/install/rule.cxx
+++ b/build/install/rule.cxx
@@ -178,9 +178,9 @@ namespace build
args.push_back (reld.string ().c_str ());
args.push_back (nullptr);
- if (verb)
+ if (verb >= 2)
print_process (args);
- else
+ else if (verb)
text << "install " << d;
try
@@ -220,9 +220,9 @@ namespace build
args.push_back (reld.string ().c_str ());
args.push_back (nullptr);
- if (verb)
+ if (verb >= 2)
print_process (args);
- else
+ else if (verb)
text << "install " << t;
try