From e8d5b21637db1e06fbb938c1a888f4b988c3e10e Mon Sep 17 00:00:00 2001 From: Tim Newsome Date: Thu, 13 Jun 2013 14:15:53 -0700 Subject: [PATCH] Add support for automake 1.12. --- autogen.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 0db8cce5..bef8222d 100755 --- a/autogen.sh +++ b/autogen.sh @@ -27,7 +27,10 @@ cd "$srcdir" DIE=1 } -if automake-1.11 --version < /dev/null > /dev/null 2>&1; then +if automake-1.12 --version < /dev/null > /dev/null 2>&1; then + AUTOMAKE=automake-1.12 + ACLOCAL=aclocal-1.12 +elif automake-1.11 --version < /dev/null > /dev/null 2>&1; then AUTOMAKE=automake-1.11 ACLOCAL=aclocal-1.11 elif automake-1.10 --version < /dev/null > /dev/null 2>&1; then