1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

xz: Add a warning to --help about alpha and beta versions.

This commit is contained in:
Lasse Collin 2012-08-13 21:40:09 +03:00
parent d8eaf9d827
commit f3c1ec69d9

View file

@ -1258,5 +1258,10 @@ message_help(bool long_help)
PACKAGE_BUGREPORT);
printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
#if LZMA_VERSION_STABILITY != LZMA_VERSION_STABILITY_STABLE
puts(_(
"THIS IS A DEVELOPMENT VERSION NOT INTENDED FOR PRODUCTION USE."));
#endif
tuklib_exit(E_SUCCESS, E_ERROR, verbosity != V_SILENT);
}