Skip to content

Commit

Permalink
Improve error messages for wrong versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sclassen authored May 17, 2021
1 parent 62b2a16 commit 7ce85fa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 7ce85fa

Please sign in to comment.