Reid Spencer | 820dab7 | 2004-09-04 19:48:50 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | die () { |
| 3 | echo "$@" 1>&2 |
| 4 | exit 1 |
| 5 | } |
| 6 | test -d autoconf && test -f autoconf/configure.ac && cd autoconf |
| 7 | [ -f configure.ac ] || die "Can't find 'autoconf' dir; please cd into it first" |
| 8 | echo "Regenerating aclocal.m4 with aclocal" |
| 9 | aclocal || die "aclocal failed" |
| 10 | autoconf --version | egrep '2\.5[0-9]' > /dev/null |
| 11 | if test $? -ne 0 |
| 12 | then |
| 13 | die "Your autoconf was not detected as being 2.5x" |
| 14 | fi |
| 15 | echo "Regenerating configure with autoconf 2.5x" |
| 16 | autoconf -o ../configure configure.ac || die "autoconf failed" |
| 17 | cd .. |
| 18 | exit 0 |