2015-01-18 21:05:38 +01:00
|
|
|
#!/bin/sh
|
2022-03-23 01:43:08 -05:00
|
|
|
|
2022-05-21 20:25:30 -04:00
|
|
|
set -e
|
|
|
|
|
|
2015-01-18 21:05:38 +01:00
|
|
|
echo "Generating build information using autoconf"
|
|
|
|
|
echo "This may take a while ..."
|
|
|
|
|
|
2017-01-13 10:42:52 -05:00
|
|
|
srcdir=`dirname $0`
|
|
|
|
|
test -z "$srcdir" && srcdir=.
|
2018-05-09 23:09:05 +10:00
|
|
|
cd "$srcdir"
|
2017-01-13 10:42:52 -05:00
|
|
|
|
2015-01-18 21:05:38 +01:00
|
|
|
# Regenerate configuration files
|
|
|
|
|
cat acinclude/* >aclocal.m4
|
2022-03-23 01:43:08 -05:00
|
|
|
|
2022-05-21 20:25:30 -04:00
|
|
|
"${AUTOCONF:-autoconf}"
|
2022-03-23 01:43:08 -05:00
|
|
|
rm aclocal.m4
|
|
|
|
|
rm -rf autom4te.cache
|
|
|
|
|
|
2015-01-18 21:05:38 +01:00
|
|
|
(cd test; sh autogen.sh)
|
|
|
|
|
|
|
|
|
|
echo "Now you are ready to run ./configure"
|