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
1 changed files with 5 additions and 0 deletions

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);
}