diff options
author | ng0 <ng0@infotropique.org> | 2017-10-17 09:58:20 +0000 |
---|---|---|
committer | ng0 <ng0@infotropique.org> | 2017-10-17 09:58:20 +0000 |
commit | 6b2f72df1c7b7317c1c8c52efd74f40c9d30c28a (patch) | |
tree | 15f0d4ef5fa4b75b21cb5e66ef7c5d7a0f788e6b /bootstrap | |
parent | 264206651ce9d2c65d3ad6bc9c2d8587cd5d797a (diff) |
boostrap: Add check for libtool, libtoolize or glibtoolize.
This *seems* to be enough to fix the complains autoconf throws at us.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 |