Blame ETL/bootstrap.sh

Rodolfo Ribeiro Gomes a88fc5
#!/bin/sh
bca953
dbee69
set -e
dbee69
Rodolfo Ribeiro Gomes a88fc5
AUTORECONF=`command -v autoreconf || true` #if don't set true, script fails with no messages
Rodolfo Ribeiro Gomes a88fc5
if [ -z $AUTORECONF ]; then
dbee69
        echo "*** No autoreconf found, please install it ***"
dbee69
        exit 1
dbee69
fi
dbee69
dbee69
bca953
rm -f aclocal.m4
Rodolfo Ribeiro Gomes a88fc5
Rodolfo Ribeiro Gomes a88fc5
echo "running autoreconf..."
bca953
autoreconf --install --force
Rodolfo Ribeiro Gomes a88fc5
Rodolfo Ribeiro Gomes a88fc5
echo "Done! Please run ./configure now."