summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rwxr-xr-xautogen.sh13
1 files changed, 8 insertions, 5 deletions
diff --git a/autogen.sh b/autogen.sh
index ba27501..9a3c9e5 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,9 +1,12 @@
1#!/bin/sh 1#!/bin/sh
2WANT_AUTOMAKE=1.8 2test -r autogen.local && source autogen.local
3export WANT_AUTOMAKE 3test -z "$tool_libtoolize" && tool_libtoolize="$(type -P glibtoolize || type -P libtoolize)"
4libtoolize -f \ 4if test -z "$tool_libtoolize" ; then
5&& aclocal \ 5 echo "Failed to find libtoolize." ; exit 1;
6fi
7 "$tool_libtoolize" -f \
8&& aclocal ${ACLOCAL_FLAGS} \
6&& autoheader \ 9&& autoheader \
7&& automake -a \ 10&& automake -a \
8&& autoconf \ 11&& autoconf \
9&& ./configure "$@" 12&& ./configure ${CONFIGURE_FLAGS} "$@"