aboutsummaryrefslogtreecommitdiff
path: root/bbot/worker.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bbot/worker.cxx')
-rw-r--r--bbot/worker.cxx15
1 files changed, 8 insertions, 7 deletions
diff --git a/bbot/worker.cxx b/bbot/worker.cxx
index f777e30..70440b0 100644
--- a/bbot/worker.cxx
+++ b/bbot/worker.cxx
@@ -465,10 +465,10 @@ bootstrap ()
{
bootstrap_manifest bm {
bootstrap_manifest::versions_type {
- {"bbot", BBOT_VERSION},
- {"libbbot", LIBBBOT_VERSION},
- {"libbpkg", LIBBPKG_VERSION},
- {"libbutl", LIBBUTL_VERSION}
+ {"bbot", standard_version (BBOT_VERSION_STR)},
+ {"libbbot", standard_version (LIBBBOT_VERSION_STR)},
+ {"libbpkg", standard_version (LIBBPKG_VERSION_STR)},
+ {"libbutl", standard_version (LIBBUTL_VERSION_STR)}
}
};
@@ -526,9 +526,10 @@ try
//
if (ops.version ())
{
- cout << "bbot-worker " << BBOT_VERSION_STR << endl
- << "libbbot " << LIBBBOT_VERSION_STR << endl
- << "libbutl " << LIBBUTL_VERSION_STR << endl
+ cout << "bbot-worker " << BBOT_VERSION_ID << endl
+ << "libbbot " << LIBBBOT_VERSION_ID << endl
+ << "libbpkg " << LIBBBOT_VERSION_ID << endl
+ << "libbutl " << LIBBUTL_VERSION_ID << endl
<< "Copyright (c) 2014-2017 Code Synthesis Ltd" << endl
<< "TBC; All rights reserved" << endl;