diff options
-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 7001219..738d00a 100644 --- a/bdep/bdep.cli +++ b/bdep/bdep.cli @@ -88,10 +88,10 @@ namespace bdep \ $ bdep status -a - in configuration @gcc: + CONFIGURATION @gcc hello configured 0.1.0-a.0.19700101000000 - in configuration @clang: + CONFIGURATION @clang hello configured 0.1.0-a.0.19700101000000 \ diff --git a/bdep/init.cxx b/bdep/init.cxx index 8f6a855..6d55523 100644 --- a/bdep/init.cxx +++ b/bdep/init.cxx @@ -74,7 +74,7 @@ namespace bdep if (verb && cfgs.size () > 1) { text << (first ? "" : "\n") - << "in configuration " << *c << ":"; + << "CONFIGURATION " << *c; first = false; } diff --git a/bdep/status.cxx b/bdep/status.cxx index 4aa3fe6..727a568 100644 --- a/bdep/status.cxx +++ b/bdep/status.cxx @@ -130,7 +130,7 @@ namespace bdep if (verb && cfgs.size () > 1) { text << (first ? "" : "\n") - << "in configuration " << *c << ':'; + << "CONFIGURATION " << *c; first = false; } diff --git a/bdep/sync.cxx b/bdep/sync.cxx index 4bf190c..f3a68ea 100644 --- a/bdep/sync.cxx +++ b/bdep/sync.cxx @@ -208,7 +208,7 @@ namespace bdep if (verb && cfgs.size () > 1) { text << (first ? "" : "\n") - << "in configuration " << *c << ':'; + << "CONFIGURATION " << *c; first = false; } |