From 7ce85faf8cef56dc35fa9db81202d58ed544aff0 Mon Sep 17 00:00:00 2001 From: sclassen Date: Mon, 17 May 2021 11:24:37 +0200 Subject: [PATCH] Improve error messages for wrong versions --- autogen.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/autogen.sh b/autogen.sh index 52d5b823a..ecd9329a8 100755 --- a/autogen.sh +++ b/autogen.sh @@ -72,25 +72,25 @@ done if test ${HAVE_AUTOCONF} = false; then echo "No proper autoconf was found." - echo "You must have autoconf 2.59 or later installed." + echo "You must have autoconf 2.59, 2.6x or 2.7x installed." exit 1 fi if test ${HAVE_AUTOHEADER} = false; then echo "No proper autoheader was found." - echo "You must have autoconf 2.59 or later installed." + echo "You must have autoheader 2.59, 2.6x or 2.7x installed." exit 1 fi if test ${HAVE_AUTOM4TE} = false; then echo "No proper autom4te was found." - echo "You must have autom4te 2.59 or later installed." + echo "You must have autom4te 2.59, 2.6x or 2.7x installed." exit 1 fi if test ${HAVE_AUTORECONF} = false; then echo "No proper autoreconf was found." - echo "You must have autoconf 2.59 or later installed." + echo "You must have autoreconf 2.59, 2.6x or 2.7x installed." exit 1 fi