From 8a53064e9579ccf890e8e6ae8db93136afb89a28 Mon Sep 17 00:00:00 2001 From: Sean Bright Date: Fri, 26 Jun 2015 14:50:53 -0400 Subject: [PATCH] bootstrap: Call libtoolize before autoconf and friends. automake fails during ./bootstrap.sh because auxdir does not exist, ultimately causing ./configure to fail because it cannot find install-sh. libtoolize will create auxdir and install ltmain.sh as well which is required by autoconf. --- bootstrap.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/bootstrap.sh b/bootstrap.sh index 570d66c..91228e0 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -40,6 +40,7 @@ check_for_app aclocal${MY_AM_VER} echo "Generating the configure script ..." +libtoolize 2>/dev/null aclocal${MY_AM_VER} autoconf${MY_AC_VER} autoheader${MY_AC_VER} -- 1.9.1