summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorSam Lantinga <slouken@libsdl.org>2006-02-19 18:52:51 +0000
committerSam Lantinga <slouken@libsdl.org>2006-02-19 18:52:51 +0000
commit3467172ad378a938bcc5f2c93890f1834566e61b (patch)
tree103a35f276213fff079594bfca624cea786c634c /autogen.sh
parentf14aad50bd1b9492e9cc875523c344cd37124626 (diff)
downloadsdl-3467172ad378a938bcc5f2c93890f1834566e61b.tar.gz
I don't think we need aclocal anymore (comes from the automake package)
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/autogen.sh b/autogen.sh
index 2f5a1f030..75bede514 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,11 +1,13 @@
#!/bin/sh
#
-echo "Generating build information using aclocal and autoconf"
+echo "Generating build information using autoconf"
echo "This may take a while ..."
# Regenerate configuration files
-(aclocal && autoconf) || exit $?
-(cd test; aclocal; autoconf)
+cp acinclude.m4 aclocal.m4
+autoconf
+# FIXME
+#(cd test; aclocal; autoconf)
# Run configure for this platform
echo "Now you are ready to run ./configure"