From: Lasse Collin Date: Fri, 8 Oct 2010 13:53:20 +0000 (+0300) Subject: Use LZMA_VERSION_STRING instead of PACKAGE_VERSION. X-Git-Tag: v5.0.0~29 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d3cd7abe85ec7c2f46cf198b15c00d5d119df3dd;p=thirdparty%2Fxz.git Use LZMA_VERSION_STRING instead of PACKAGE_VERSION. Those are the same thing, and the former makes it a bit easier to build the code with other build systems, because one doesn't need to update the version number into custom config.h. This change affects only lzmainfo. Other tools were already using LZMA_VERSION_STRING. --- diff --git a/src/lzmainfo/lzmainfo.c b/src/lzmainfo/lzmainfo.c index af8e66cc..b5f36320 100644 --- a/src/lzmainfo/lzmainfo.c +++ b/src/lzmainfo/lzmainfo.c @@ -43,7 +43,7 @@ _("Usage: %s [--help] [--version] [FILE]...\n" static void lzma_attribute((noreturn)) version(void) { - puts("lzmainfo (" PACKAGE_NAME ") " PACKAGE_VERSION); + puts("lzmainfo (" PACKAGE_NAME ") " LZMA_VERSION_STRING); tuklib_exit(EXIT_SUCCESS, EXIT_FAILURE, true); }