From 71560f2b553d1f4363367a8365daba97740d6892 Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Wed, 2 Oct 2013 20:08:46 +0200 Subject: [PATCH] Support automake 1.14 https://bugzilla.gnome.org/show_bug.cgi?id=709293 --- autogen.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/autogen.sh b/autogen.sh index e5880284a..72d5563b4 100755 --- a/autogen.sh +++ b/autogen.sh @@ -48,6 +48,9 @@ fi DIE=1 } +if automake-1.14 --version < /dev/null > /dev/null 2>&1 ; then + AUTOMAKE=automake-1.14 + ACLOCAL=aclocal-1.14 if automake-1.13 --version < /dev/null > /dev/null 2>&1 ; then AUTOMAKE=automake-1.13 ACLOCAL=aclocal-1.13 @@ -75,6 +78,7 @@ fi fi fi fi +fi if test "$DIE" -eq 1; then exit 1