From 7b62896b8c54b127f1c7afca5ebfa91ead3069e5 Mon Sep 17 00:00:00 2001 From: Daniel Buch Date: Thu, 29 Jan 2015 14:32:20 +0100 Subject: [PATCH] BUILD: bump automake to 1.15 I managed to succesfully build with automake, also autotools .14 -> .15 is bugfixes only. --- autogen.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index fba2472..9934eee 100755 --- a/autogen.sh +++ b/autogen.sh @@ -48,7 +48,10 @@ fi 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 +else if automake-1.14 --version < /dev/null > /dev/null 2>&1 ; then AUTOMAKE=automake-1.14 ACLOCAL=aclocal-1.14 else if automake-1.13 --version < /dev/null > /dev/null 2>&1 ; then @@ -79,6 +82,7 @@ fi fi fi fi +fi if test "$DIE" -eq 1; then exit 1 -- 2.2.2