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