1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

* autogen.sh (ac_version): try automake 1.7 too.

This commit is contained in:
Gary Houston 2002-10-13 22:20:46 +00:00
parent a90bdb7346
commit e5b4630dd3
2 changed files with 7 additions and 4 deletions

View file

@ -1,3 +1,7 @@
2002-10-13 Gary Houston <ghouston@arglist.com>
* autogen.sh (ac_version): try automake 1.7 too.
2002-10-05 Marius Vollmer <mvo@zagadka.ping.de>
* autogen.sh: Make sure that $autoheader is always set. When we

View file

@ -75,10 +75,10 @@ fi
#detect automake version
# configure.in reqs automake-1.6; try to find it
for suf in "-1.6" "1.6" "" false; do
# configure.in requires particular automake; try to find it
for suf in "-1.7" "1.7" "-1.6" "1.6" "" false; do
version=`automake$suf --version 2>/dev/null | head -1 | awk '{print $NF}' | awk -F. '{print $1 * 10 + $2}'`
if test "0$version" -eq 16; then
if test "0$version" -eq 17 -o "0$version" -eq 16; then
automake=automake$suf
break
fi
@ -89,7 +89,6 @@ if test -z "$automake"; then
exit 1
fi
################################################################
$autoheader
$autoconf