add support for automake 1.15

Signed-off-by: John Dennis <jdennis@redhat.com>
License: MIT
This commit is contained in:
John Dennis 2015-07-14 10:20:00 -04:00 committed by Benjamin Dauvergne
parent 29897506c7
commit 640f96c8c6
1 changed files with 4 additions and 1 deletions

View File

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