mirror of https://github.com/GOSTSec/sgminer
Con Kolivas
12 years ago
2 changed files with 17 additions and 12 deletions
@ -1,12 +1,17 @@ |
|||||||
#!/bin/sh |
#!/bin/sh |
||||||
|
cwd="$PWD" |
||||||
|
bs_dir="$(dirname $(readlink -f $0))" |
||||||
|
rm -rf "${bs_dir}"/autom4te.cache |
||||||
|
rm -f "${bs_dir}"/aclocal.m4 "${bs_dir}"/ltmain.sh |
||||||
|
|
||||||
# You need autoconf 2.5x, preferably 2.57 or later |
echo 'Running autoreconf -if...' |
||||||
# You need automake 1.7 or later. 1.6 might work. |
autoreconf -if || exit 1 |
||||||
|
if test -z "$NOCONFIGURE" ; then |
||||||
set -e |
echo 'Configuring...' |
||||||
|
cd "${bs_dir}" &> /dev/null |
||||||
aclocal -I m4 |
test "$?" = "0" || e=1 |
||||||
autoheader |
test "$cwd" != "$bs_dir" && cd "$bs_dir" &> /dev/null |
||||||
automake --add-missing --copy |
./configure $@ |
||||||
autoconf |
test "$e" = "1" && exit 1 |
||||||
|
cd "$cwd" |
||||||
|
fi |
||||||
|
Loading…
Reference in new issue