Skip to content
Snippets Groups Projects
Commit c6ea5978 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

check for libtoolize and aclocal to doublecheck the installations better

parent 175b00c0
No related branches found
No related tags found
No related merge requests found
......@@ -85,6 +85,14 @@ fi
echo "buildconf: automake version $am_version (ok)"
ac=`findtool aclocal`
if test -z "$ac"; then
echo "buildconf: aclocal not found. Weird automake installation!"
exit 1
else
echo "buildconf: aclocal found"
fi
#--------------------------------------------------------------------------
# libtool check
......@@ -142,6 +150,13 @@ fi
echo "buildconf: libtool version $lt_version (ok)"
if test -f "$LIBTOOLIZE"; then
echo "buildconf: libtoolize found"
else
echo "buildconf: libtoolize not found. Weird libtool installation!"
exit 1
fi
#--------------------------------------------------------------------------
# m4 check
#
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment