comparison autogen.sh @ 1376:4a47f20705eb

I don't think we need aclocal anymore (comes from the automake package)
author Sam Lantinga <slouken@libsdl.org>
date Sun, 19 Feb 2006 18:52:51 +0000
parents 19418e4422cb
children d94b080ff6ce
comparison
equal deleted inserted replaced
1375:3793c4b34a92 1376:4a47f20705eb
1 #!/bin/sh 1 #!/bin/sh
2 # 2 #
3 echo "Generating build information using aclocal and 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 (aclocal && autoconf) || exit $? 7 cp acinclude.m4 aclocal.m4
8 (cd test; aclocal; autoconf) 8 autoconf
9 # FIXME
10 #(cd test; aclocal; autoconf)
9 11
10 # Run configure for this platform 12 # Run configure for this platform
11 echo "Now you are ready to run ./configure" 13 echo "Now you are ready to run ./configure"