Support automake 1.13 and 1.14

License: MIT
Signed-off-by: Simo Sorce <simo@redhat.com>
This commit is contained in:
Simo Sorce 2013-09-14 14:46:45 -04:00 committed by Frédéric Péters
parent 3a6b2fdee7
commit c805866803
1 changed files with 7 additions and 1 deletions

View File

@ -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