diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-07-02 14:30:38 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-07-02 14:30:38 +0300 |
commit | 0a289c01ac821ea9c4250aa906b0ae3cfa953633 (patch) | |
tree | 94164466eeac744d314c93c4d2489f0adfc636c0 /src/xzdec | |
parent | Avoid visibility related compiler warnings on Windows. (diff) | |
download | xz-0a289c01ac821ea9c4250aa906b0ae3cfa953633.tar.xz |
Define PACKAGE_HOMEPAGE in configure.ac and use it in
xz and xzdec.
Use also PACKAGE_NAME instead of hardcoding "XZ Utils".
Diffstat (limited to 'src/xzdec')
-rw-r--r-- | src/xzdec/xzdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xzdec/xzdec.c b/src/xzdec/xzdec.c index e6f576de..33a7004c 100644 --- a/src/xzdec/xzdec.c +++ b/src/xzdec/xzdec.c @@ -108,7 +108,7 @@ help(void) "%" PRIu64 " MiB RAM.\n" "\n" "Report bugs to <" PACKAGE_BUGREPORT "> (in English or Finnish).\n" -"XZ Utils home page: <http://tukaani.org/xz/>\n", +PACKAGE_NAME " home page: <" PACKAGE_HOMEPAGE ">\n", argv0, memlimit / (1024 * 1024)); my_exit(); } @@ -117,7 +117,7 @@ help(void) static void lzma_attribute((noreturn)) version(void) { - printf(TOOL_FORMAT "dec " LZMA_VERSION_STRING "\n" + printf(TOOL_FORMAT "dec (" PACKAGE_NAME ") " LZMA_VERSION_STRING "\n" "liblzma %s\n", lzma_version_string()); my_exit(); |