aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-11-22 14:57:06 +0100
committerMax Kellermann <max@duempel.org>2008-11-22 14:57:06 +0100
commitd9b3efa6a140539e70d8c316899baa0cc95315f4 (patch)
tree01ae981872087239db2ed243198e73f3c57e0592 /autogen.sh
parentd0779e71ab2692928ed59327bd5ca2e5cd959af6 (diff)
autogen.sh: removed libtoolize
Since we don't use libtool anymore, autogen.sh shouldn't call libtoolize.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/autogen.sh b/autogen.sh
index 62e8eb2d..51fe243d 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -84,29 +84,6 @@ do
fi
done
-if test -n "$LIBTOOLIZE"
-then
- echo "LIBTOOLIZE=$LIBTOOLIZE in environment," \
- "will not attempt to auto-detect"
-else
- printf "checking for libtoolize ... "
- for x in libtoolize glibtoolize
- do
- ($x --version < /dev/null > /dev/null 2>&1) > /dev/null 2>&1
- if test $? -eq 0
- then
- echo $x
- LIBTOOLIZE=$x
- break
- fi
- done
-fi
-
-if test -z "$LIBTOOLIZE"
-then
- DIE="$DIE libtoolize(libtool)"
-fi
-
if test -n "$DIE"
then
echo "You must have the following installed to compile $package:"
@@ -148,9 +125,6 @@ $ACLOCAL $ACLOCAL_FLAGS || exit 1
echo " $AUTOHEADER"
$AUTOHEADER || exit 1
-echo " $LIBTOOLIZE --automake"
-$LIBTOOLIZE --automake || exit 1
-
echo " $AUTOMAKE --add-missing $AUTOMAKE_FLAGS"
$AUTOMAKE --add-missing $AUTOMAKE_FLAGS || exit 1