From 6b2f72df1c7b7317c1c8c52efd74f40c9d30c28a Mon Sep 17 00:00:00 2001 From: ng0 Date: Tue, 17 Oct 2017 09:58:20 +0000 Subject: boostrap: Add check for libtool, libtoolize or glibtoolize. This *seems* to be enough to fix the complains autoconf throws at us. --- bootstrap | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'bootstrap') 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 -- cgit v1.2.3