aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-05-03 10:59:29 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-05-03 10:59:29 +0200
commit22852cef6d527cad426736def0339c420ba80982 (patch)
tree775336d98b0515aea5bc2d527d12c0e832513564
parent740ba10d64ff0b11c6bd364764520537d77dfc9c (diff)
Use VERSION_ID instead of VERSION_STR where appropriate
-rw-r--r--bpkg/bpkg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/bpkg/bpkg.cxx b/bpkg/bpkg.cxx
index 86f86db..0bba61a 100644
--- a/bpkg/bpkg.cxx
+++ b/bpkg/bpkg.cxx
@@ -151,9 +151,9 @@ try
if (o.version ())
{
- cout << "bpkg " << BPKG_VERSION_STR << endl
- << "libbpkg " << LIBBPKG_VERSION_STR << endl
- << "libbutl " << LIBBUTL_VERSION_STR << endl
+ cout << "bpkg " << BPKG_VERSION_ID << endl
+ << "libbpkg " << LIBBPKG_VERSION_ID << endl
+ << "libbutl " << LIBBUTL_VERSION_ID << endl
<< "Copyright (c) 2014-2017 Code Synthesis Ltd" << endl
<< "This is free software released under the MIT license." << endl;
return 0;