summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2013-09-14 14:46:45 -0400
committerFrédéric Péters <fpeters@entrouvert.com>2013-12-05 17:20:51 +0100
commitc8058668037110e35285913ab2f8c25741867cb9 (patch)
treeeb1f2b068f51cdf966527d06ec800c59d174a219
parent3a6b2fdee76b5f782094b6b268bfdf895263eda8 (diff)
downloadlasso-c8058668037110e35285913ab2f8c25741867cb9.tar.gz
lasso-c8058668037110e35285913ab2f8c25741867cb9.tar.xz
lasso-c8058668037110e35285913ab2f8c25741867cb9.zip
Support automake 1.13 and 1.14
License: MIT Signed-off-by: Simo Sorce <simo@redhat.com>
-rwxr-xr-xautogen.sh8
1 files changed, 7 insertions, 1 deletions
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