comparison autogen.sh @ 1563:b054590b967a

Fall back to autogen259 if autogen isn't available
author Sam Lantinga <slouken@libsdl.org>
date Tue, 21 Mar 2006 06:54:24 +0000
parents d94b080ff6ce
children 4950a25bd91e
comparison
equal deleted inserted replaced
1562:1d487a3fab41 1563:b054590b967a
3 echo "Generating build information using autoconf" 3 echo "Generating build information using autoconf"
4 echo "This may take a while ..." 4 echo "This may take a while ..."
5 5
6 # Regenerate configuration files 6 # Regenerate configuration files
7 cp acinclude.m4 aclocal.m4 7 cp acinclude.m4 aclocal.m4
8 autoconf 8 for autoconf in autoconf autoconf259
9 do if which $autoconf >/dev/null; then $autoconf; break; fi
10 done
9 (cd test; sh autogen.sh) 11 (cd test; sh autogen.sh)
10 12
11 # Run configure for this platform 13 # Run configure for this platform
12 echo "Now you are ready to run ./configure" 14 echo "Now you are ready to run ./configure"