2015-06-21 09:33:46 -06:00
|
|
|
#!/bin/sh
|
2021-04-14 14:20:40 -06:00
|
|
|
|
2022-05-05 12:54:00 -06:00
|
|
|
set -e
|
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
echo "Generating build information using autoconf"
|
|
|
|
echo "This may take a while ..."
|
|
|
|
|
2016-10-01 11:39:03 -06:00
|
|
|
srcdir=`dirname $0`
|
|
|
|
test -z "$srcdir" && srcdir=.
|
2016-12-26 20:58:58 -07:00
|
|
|
cd "$srcdir"
|
2016-10-01 11:39:03 -06:00
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
# Regenerate configuration files
|
|
|
|
cat acinclude/* >aclocal.m4
|
2021-04-14 14:20:40 -06:00
|
|
|
|
2022-05-05 12:54:00 -06:00
|
|
|
"${AUTOCONF:-autoconf}"
|
2021-04-14 14:20:40 -06:00
|
|
|
rm aclocal.m4
|
|
|
|
rm -rf autom4te.cache
|
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
(cd test; sh autogen.sh)
|
|
|
|
|
|
|
|
echo "Now you are ready to run ./configure"
|