diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-04-19 18:50:07 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-04-19 18:50:07 +0200 |
commit | 084046cffaeaeaa49a78950656b769fd84d7a17b (patch) | |
tree | df821486ccea615d7ff6a6952f54e945797ff2a7 | |
parent | 7df25614e207c0751972938ff48bf9a44cc14748 (diff) |
Adjust diagnostics
-rw-r--r-- | bdep/bdep.cli | 4 | ||||
-rw-r--r-- | bdep/init.cxx | 2 | ||||
-rw-r--r-- | bdep/status.cxx | 2 | ||||
-rw-r--r-- | bdep/sync.cxx | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/bdep/bdep.cli b/bdep/bdep.cli index 055d4bc..19c79af 100644 --- a/bdep/bdep.cli +++ b/bdep/bdep.cli @@ -194,10 +194,10 @@ namespace bdep \ $ bdep status -a - CONFIGURATION @gcc + in configuration @gcc: hello configured 0.1.0-a.0.19700101000000 - CONFIGURATION @clang + in configuration @clang: hello configured 0.1.0-a.0.19700101000000 \ diff --git a/bdep/init.cxx b/bdep/init.cxx index 335d45e..49a2de4 100644 --- a/bdep/init.cxx +++ b/bdep/init.cxx @@ -74,7 +74,7 @@ namespace bdep if (verb && cfgs.size () > 1) { text << (first ? "" : "\n") - << "CONFIGURATION " << *c; + << "in configuration " << *c << ':'; first = false; } diff --git a/bdep/status.cxx b/bdep/status.cxx index 727a568..4aa3fe6 100644 --- a/bdep/status.cxx +++ b/bdep/status.cxx @@ -130,7 +130,7 @@ namespace bdep if (verb && cfgs.size () > 1) { text << (first ? "" : "\n") - << "CONFIGURATION " << *c; + << "in configuration " << *c << ':'; first = false; } diff --git a/bdep/sync.cxx b/bdep/sync.cxx index a52d309..370e4f4 100644 --- a/bdep/sync.cxx +++ b/bdep/sync.cxx @@ -211,7 +211,7 @@ namespace bdep if (verb && cfgs.size () > 1) { text << (first ? "" : "\n") - << "CONFIGURATION " << *c; + << "in configuration " << *c << ':'; first = false; } |