From 495b41416b381678bdc94a85e4a89b0a4c970c92 Mon Sep 17 00:00:00 2001 From: Michael Henning Date: Fri, 4 Jan 2013 19:48:23 -0500 Subject: [PATCH] autogen.sh: also look for automake 1.13 --- autogen.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/autogen.sh b/autogen.sh index 01ecc9e4a0..f1483ac661 100755 --- a/autogen.sh +++ b/autogen.sh @@ -157,6 +157,9 @@ echo -n "checking for automake >= $AUTOMAKE_REQUIRED_VERSION ... " if ($AUTOMAKE --version) < /dev/null > /dev/null 2>&1; then AUTOMAKE=$AUTOMAKE ACLOCAL=$ACLOCAL +elif (automake-1.13 --version) < /dev/null > /dev/null 2>&1; then + AUTOMAKE=automake-1.13 + ACLOCAL=aclocal-1.13 elif (automake-1.12 --version) < /dev/null > /dev/null 2>&1; then AUTOMAKE=automake-1.12 ACLOCAL=aclocal-1.12