From 1936d3879a9c6dfbd2338caac3de956fce9c7456 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Wed, 28 Aug 2013 23:02:07 +1000 Subject: [PATCH] Use direct auto* files to avoid failure of autoreconf --- autogen.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 8bb94c3e..985cea94 100755 --- a/autogen.sh +++ b/autogen.sh @@ -4,7 +4,12 @@ rm -rf "${bs_dir}"/autom4te.cache rm -f "${bs_dir}"/aclocal.m4 "${bs_dir}"/ltmain.sh echo 'Running autoreconf -if...' -autoreconf -if ${AC_FLAGS} "${bs_dir}" || exit 1 +aclocal --force -I m4 +libtoolize --install --copy --force +autoconf --force +autoheader --force +automake --add-missing --copy --force-missing + if test -z "$NOCONFIGURE" ; then echo 'Configuring...' "$bs_dir"/configure "$@"