From bb465062d547883ab14aab5ffd3c891f1c310c9a Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 26 May 2013 16:01:40 -0700 Subject: [PATCH] Need to generate aclocal.m4 when rebuilding configure, but we don't need to check it in. --- .hgignore | 2 +- autogen.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.hgignore b/.hgignore index c74c5047f..ed369a331 100644 --- a/.hgignore +++ b/.hgignore @@ -1,5 +1,5 @@ syntax:glob -.svn +aclocal.m4 autom4te* config.cache config.log diff --git a/autogen.sh b/autogen.sh index a41f09578..649d7b31e 100755 --- a/autogen.sh +++ b/autogen.sh @@ -4,6 +4,7 @@ echo "Generating build information using autoconf" echo "This may take a while ..." # Regenerate configuration files +cat acinclude/* >aclocal.m4 found=false for autoconf in autoconf autoconf259 autoconf-2.59 do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi