From c357782c1c6d8a9f532b1c546b2adff512cde522 Mon Sep 17 00:00:00 2001 From: Michael Krelin Date: Sat, 14 Nov 2009 23:05:49 +0000 Subject: autogen.sh improvements - take into account ${ACLOCAL_FLAGS} and ${CONFIGURE_FLAGS} - source in autogen.local for setting them up -try to detect {g,}libtoolize Signed-off-by: Michael Krelin --- diff --git a/autogen.sh b/autogen.sh index ba27501..9a3c9e5 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,9 +1,12 @@ #!/bin/sh -WANT_AUTOMAKE=1.8 -export WANT_AUTOMAKE -libtoolize -f \ -&& aclocal \ +test -r autogen.local && source autogen.local +test -z "$tool_libtoolize" && tool_libtoolize="$(type -P glibtoolize || type -P libtoolize)" +if test -z "$tool_libtoolize" ; then + echo "Failed to find libtoolize." ; exit 1; +fi + "$tool_libtoolize" -f \ +&& aclocal ${ACLOCAL_FLAGS} \ && autoheader \ && automake -a \ && autoconf \ -&& ./configure "$@" +&& ./configure ${CONFIGURE_FLAGS} "$@" -- cgit v0.9.0.2