Fall back to autogen259 if autogen isn't available

This commit is contained in:
Sam Lantinga
2006-03-21 06:54:24 +00:00
parent 56345b8c5d
commit 351eafeef7
2 changed files with 6 additions and 2 deletions

View File

@@ -5,7 +5,9 @@ echo "This may take a while ..."
# Regenerate configuration files
cp acinclude.m4 aclocal.m4
autoconf
for autoconf in autoconf autoconf259
do if which $autoconf >/dev/null; then $autoconf; break; fi
done
(cd test; sh autogen.sh)
# Run configure for this platform

View File

@@ -2,4 +2,6 @@
#
# Regenerate configuration files
cp acinclude.m4 aclocal.m4
autoconf
for autoconf in autoconf autoconf259
do if which $autoconf >/dev/null; then $autoconf; break; fi
done