* bootstrap: support automake version 1.8 and 1.9.

git-svn-id: svn://svn.zoy.org/elk/trunk@257 55e467fa-43c5-0310-a8a2-de718669efc6
This commit is contained in:
sam 2005-11-01 18:59:20 +00:00
parent 29930448d4
commit 04359f2053
1 changed files with 5 additions and 1 deletions

View File

@ -14,7 +14,11 @@ export CYGWIN
# Check for automake
amvers="no"
if automake-1.7 --version >/dev/null 2>&1; then
if automake-1.9 --version >/dev/null 2>&1; then
amvers="-1.9"
elif automake-1.8 --version >/dev/null 2>&1; then
amvers="-1.8"
elif automake-1.7 --version >/dev/null 2>&1; then
amvers="-1.7"
elif automake-1.6 --version >/dev/null 2>&1; then
amvers="-1.6"