Missing libtool dependency in autogen.sh script

Running autogen.sh script without libtool installed ended with error.

Now user is informed about missing dependency:
*** No libtool found, please install it ***

https://bugzilla.gnome.org/show_bug.cgi?id=769807
This commit is contained in:
Rafał Jaskurzyński 2016-08-12 19:05:07 +02:00 committed by Jesse van den Kieboom
parent 88d9ba1212
commit 38519a8357

View File

@ -24,6 +24,12 @@ if test -z `which autopoint`; then
exit 1
fi
LIBTOOL=`which libtoolize`
if test -z $LIBTOOL; then
echo "*** No libtool found, please install it ***"
exit 1
fi
git submodule update --init --recursive
if [ $? != 0 ]; then