From 5a2f1a836f3a7632d15154555d716509b6dcb93f Mon Sep 17 00:00:00 2001 From: Taylor Yu Date: Mon, 1 May 2017 11:15:49 -0400 Subject: [PATCH] Fix help message for --enable-lzma Fixes #22111. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ff917354a..aa1eda655 100644 --- a/configure.ac +++ b/configure.ac @@ -746,7 +746,7 @@ dnl ------------------------------------------------------ dnl Where we do we find lzma? AC_ARG_ENABLE(lzma, - AS_HELP_STRING(--enable-lzma, [enable support for the Zstandard compression scheme.]), + AS_HELP_STRING(--enable-lzma, [enable support for the LZMA compression scheme.]), [case "${enableval}" in "yes") lzma=true ;; "no") lzma=false ;;