Add support for automake 1.12.

This commit is contained in:
Tim Newsome 2013-06-13 14:15:53 -07:00 committed by Benjamin Dauvergne
parent d572326a2f
commit e8d5b21637
1 changed files with 4 additions and 1 deletions

View File

@ -27,7 +27,10 @@ cd "$srcdir"
DIE=1
}
if automake-1.11 --version < /dev/null > /dev/null 2>&1; then
if 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
AUTOMAKE=automake-1.11
ACLOCAL=aclocal-1.11
elif automake-1.10 --version < /dev/null > /dev/null 2>&1; then