Commit 1936d3879a9c6dfbd2338caac3de956fce9c7456

Con Kolivas 2013-08-28T23:02:07

Use direct auto* files to avoid failure of autoreconf

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
diff --git a/autogen.sh b/autogen.sh
index 8bb94c3..985cea9 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 "$@"