summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexponomarev7 <Alex.ponomarev7@ya.ru>2022-10-16 01:54:27 +0200
committerGitHub <noreply@github.com>2022-10-15 16:54:27 -0700
commitd76cabe54fa50723dcd3967831c9a31fd4a2845e (patch)
tree3cb1a2966d4305c842dce51bd233456836efcfe7
parentb5544a95b1c163d9bb98fc132a18f329d9d8028e (diff)
downloadrsync-d76cabe54fa50723dcd3967831c9a31fd4a2845e.tar.gz
Fix autoconf help strings (#389)
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 7fa6ff73..8ad6137e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -528,7 +528,7 @@ fi
AC_MSG_CHECKING([whether to enable zstd compression])
AC_ARG_ENABLE([zstd],
- AC_HELP_STRING([--disable-zstd], [disable to omit zstd compression]))
+ AS_HELP_STRING([--disable-zstd], [disable to omit zstd compression]))
AH_TEMPLATE([SUPPORT_ZSTD],
[Undefine if you do not want zstd compression. By default this is defined.])
if test x"$enable_zstd" != x"no"; then
@@ -549,7 +549,7 @@ fi
AC_MSG_CHECKING([whether to enable LZ4 compression])
AC_ARG_ENABLE([lz4],
- AC_HELP_STRING([--disable-lz4], [disable to omit LZ4 compression]))
+ AS_HELP_STRING([--disable-lz4], [disable to omit LZ4 compression]))
AH_TEMPLATE([SUPPORT_LZ4],
[Undefine if you do not want LZ4 compression. By default this is defined.])
if test x"$enable_lz4" != x"no"; then