1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-02-05 03:24:26 +00:00

Use direct auto* files to avoid failure of autoreconf

This commit is contained in:
Con Kolivas 2013-08-28 23:02:07 +10:00
parent af9a877825
commit 1936d3879a

View File

@ -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 "$@"