summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorSam Lantinga <slouken@libsdl.org>2013-05-26 16:01:40 -0700
committerSam Lantinga <slouken@libsdl.org>2013-05-26 16:01:40 -0700
commit9bbe4b2a443cbcfe472c4fc34ea1df9036ae0cd6 (patch)
treedd934c0de0e6afed1bc4d8fa670b6678e958324f /autogen.sh
parentc5701fe36037e5273c8e49a3ec9a61d2f5361253 (diff)
Need to generate aclocal.m4 when rebuilding configure, but we don't need to check it in.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
index a41f09578a..649d7b31e9 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