From: ng0 Date: Tue, 17 Oct 2017 09:58:20 +0000 (+0000) Subject: boostrap: Add check for libtool, libtoolize or glibtoolize. X-Git-Tag: gnunet-0.11.0rc0~101^2~59 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6b2f72df1c7b7317c1c8c52efd74f40c9d30c28a;p=oweals%2Fgnunet.git boostrap: Add check for libtool, libtoolize or glibtoolize. This *seems* to be enough to fix the complains autoconf throws at us. --- diff --git a/bootstrap b/bootstrap index 99de68521..f13919ba8 100755 --- a/bootstrap +++ b/bootstrap @@ -1,4 +1,9 @@ #!/bin/sh rm -rf libltdl +echo -n "checking for libtoolize / libtool... " +which glibtoolize || which libtoolize || which libtool || { + echo "*** No libtoolize (libtool) or libtool found, please install it ***" + exit 1 +} autoreconf -if contrib/pogen.sh