From: Li Dongyang Date: Sun, 14 Feb 2021 23:30:11 +0000 (+1100) Subject: LU-14432 configure.ac: fix AC_PREREQ X-Git-Tag: v1.47.0-wc1~34 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=ae759259e67d5023c7f96900d2368842f1774d6e;p=tools%2Fe2fsprogs.git LU-14432 configure.ac: fix AC_PREREQ AS_HELP_STRING was introduced in autoconf 2.58 requiring autoconf 2.69 is not necessary and it breaks several builds in our Jenkins. Change required autoconf to 2.59 just to be safe. Change-Id: I30af873879866858d32b715ac4ce78d095e10f7d Fixes: 8c9e2921 ("configure.ac: convert all help strings to use AS_HELP_STRING") Signed-off-by: Li Dongyang Reviewed-on: https://review.whamcloud.com/41665 Reviewed-by: Andreas Dilger Reviewed-by: Wang Shilong Tested-by: jenkins Tested-by: Maloo --- diff --git a/configure.ac b/configure.ac index 017a96f..f1c280b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_INIT AC_CONFIG_SRCDIR([version.h]) -AC_PREREQ([2.71]) +AC_PREREQ(2.59) AC_CONFIG_AUX_DIR(config) AC_CONFIG_HEADERS([lib/config.h]) AH_BOTTOM([#include ])