Need to generate aclocal.m4 when rebuilding configure, but we don't need to check it in.

This commit is contained in:
Sam Lantinga 2013-05-26 16:01:40 -07:00
parent b3d555764f
commit 10fbebcc51
2 changed files with 2 additions and 1 deletions

View file

@ -1,5 +1,5 @@
syntax:glob syntax:glob
.svn aclocal.m4
autom4te* autom4te*
config.cache config.cache
config.log config.log

View file

@ -4,6 +4,7 @@ echo "Generating build information using autoconf"
echo "This may take a while ..." echo "This may take a while ..."
# Regenerate configuration files # Regenerate configuration files
cat acinclude/* >aclocal.m4
found=false found=false
for autoconf in autoconf autoconf259 autoconf-2.59 for autoconf in autoconf autoconf259 autoconf-2.59
do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi