Add call to autoupdate if available

pull/696/head
Jeffrey Walton 2018-07-27 16:09:27 -04:00
parent c7332c22aa
commit a3efa68da7
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 5 additions and 0 deletions

View File

@ -59,6 +59,11 @@ if [[ ! -z $(command -v "$SED") ]]; then
fi fi
mkdir -p m4/ mkdir -p m4/
if [[ ! -z $(command -v autoupdate) ]]; then
autoupdate
fi
if ! autoreconf --force --install --warnings=all; then if ! autoreconf --force --install --warnings=all; then
echo "autoreconf failed" echo "autoreconf failed"
[[ "$0" = "${BASH_SOURCE[0]}" ]] && exit 1 || return 1 [[ "$0" = "${BASH_SOURCE[0]}" ]] && exit 1 || return 1