equal
deleted
inserted
replaced
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" |