From c8058668037110e35285913ab2f8c25741867cb9 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Sat, 14 Sep 2013 14:46:45 -0400 Subject: Support automake 1.13 and 1.14 License: MIT Signed-off-by: Simo Sorce --- autogen.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index bef8222d..64779a00 100755 --- a/autogen.sh +++ b/autogen.sh @@ -27,7 +27,13 @@ cd "$srcdir" DIE=1 } -if automake-1.12 --version < /dev/null > /dev/null 2>&1; then +if automake-1.14 --version < /dev/null > /dev/null 2>&1; then + AUTOMAKE=automake-1.14 + ACLOCAL=aclocal-1.14 +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 elif automake-1.11 --version < /dev/null > /dev/null 2>&1; then -- cgit