From 601b6900a06ef5a488772ea69804e9982b9bd428 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Sat, 14 Jun 2003 23:07:09 +0000 Subject: auto* changes, update to version 1.0.2 git-svn-id: http://code.sixapart.com/svn/memcached/trunk@21 b0b603af-a30f-0410-a34e-baf09ae79d0b --- autogen.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index f83c887..c3a63b5 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,8 +1,11 @@ #!/bin/sh +# +# This is hacky, because there are so many damn versions +# of autoconf/automake. It works with Debian woody, at least. +# echo "aclocal..." -ACLOCAL=${ACLOCAL:-aclocal-1.7} -$ACLOCAL || exit 1 +$ACLOCAL || aclocal-1.7 || aclocal-1.5 || exit 1 echo "autoheader..." AUTOHEADER=${AUTOHEADER:-autoheader} @@ -10,7 +13,7 @@ $AUTOHEADER || exit 1 echo "automake..." AUTOMAKE=${AUTOMAKE:-automake-1.7} -$AUTOMAKE --gnu --add-missing || exit 1 +$AUTOMAKE --gnu --add-missing || automake --gnu --add-missing || exit 1 echo "autoconf..." AUTOCONF=${AUTOCONF:-autoconf} -- cgit v1.2.1