diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-02-13 18:00:03 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-02-13 18:00:03 +0200 |
commit | fdbc0cfa71f7d660855098a609175ba384259529 (patch) | |
tree | ee4416f50124fbbb8142e14eeee345fa4236c726 /src/xz | |
parent | Fix handling of integrity check type in the xz command line tool. (diff) | |
download | xz-fdbc0cfa71f7d660855098a609175ba384259529.tar.xz |
Changed how the version number is specified in various places.
Now configure.ac will get the version number directly from
src/liblzma/api/lzma/version.h. The intent is to reduce the
number of places where the version number is duplicated. In
future, support for displaying Git commit ID may be added too.
Diffstat (limited to 'src/xz')
-rw-r--r-- | src/xz/message.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xz/message.c b/src/xz/message.c index 33eb0b3b..fd519c8f 100644 --- a/src/xz/message.c +++ b/src/xz/message.c @@ -892,7 +892,7 @@ message_version(void) { // It is possible that liblzma version is different than the command // line tool version, so print both. - printf("xz " PACKAGE_VERSION "\n"); + printf("xz " LZMA_VERSION_STRING "\n"); printf("liblzma %s\n", lzma_version_string()); my_exit(E_SUCCESS); } |