diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-04-28 13:43:20 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-04-28 13:43:20 +0200 |
commit | 76feff16a589771848487cce735fa29eaab51e9d (patch) | |
tree | 2dcdc1cdce3b3c6d6972caaefd8742347ce6b635 | |
parent | cbb59d15679cdca046615c19ebf8fee40b7fc599 (diff) |
Use version id for printing
-rw-r--r-- | build2/b.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build2/b.cxx b/build2/b.cxx index 23d0e01..cafc18f 100644 --- a/build2/b.cxx +++ b/build2/b.cxx @@ -249,8 +249,8 @@ main (int argc, char* argv[]) // if (ops.version ()) { - cout << "build2 " << BUILD2_VERSION_STR<< endl - << "libbutl " << LIBBUTL_VERSION_STR << endl + cout << "build2 " << BUILD2_VERSION_ID << endl + << "libbutl " << LIBBUTL_VERSION_ID << endl << "host " << BUILD2_HOST_TRIPLET << endl << "Copyright (c) 2014-2017 Code Synthesis Ltd" << endl << "This is free software released under the MIT license." << endl; |