From 640f96c8c6c5ea313ddeb3235ddaa9823d8d81c4 Mon Sep 17 00:00:00 2001 From: John Dennis Date: Tue, 14 Jul 2015 10:20:00 -0400 Subject: [PATCH] add support for automake 1.15 Signed-off-by: John Dennis License: MIT --- autogen.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 64779a00..4fcacfc5 100755 --- a/autogen.sh +++ b/autogen.sh @@ -27,7 +27,10 @@ cd "$srcdir" DIE=1 } -if automake-1.14 --version < /dev/null > /dev/null 2>&1; then +if automake-1.15 --version < /dev/null > /dev/null 2>&1; then + AUTOMAKE=automake-1.15 + ACLOCAL=aclocal-1.15 +elif 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