1ac454a384
Enabled ShellCheck rules: SC1087 SC2001 SC2004 SC2005 SC2006 SC2016 SC2028 SC2048 SC2066 (note that IFS already contains only a line feed) SC2116 SC2166 SC2181 SC2206 SC2207 SC2230 SC2236
16 lines
542 B
Bash
Executable file
16 lines
542 B
Bash
Executable file
#!/bin/sh
|
|
# Copyright (c) 2013-2016 The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
export LC_ALL=C
|
|
set -e
|
|
srcdir="$(dirname $0)"
|
|
cd "$srcdir"
|
|
if [ -z ${LIBTOOLIZE} ] && GLIBTOOLIZE="$(command -v glibtoolize)"; then
|
|
LIBTOOLIZE="${GLIBTOOLIZE}"
|
|
export LIBTOOLIZE
|
|
fi
|
|
command -v autoreconf >/dev/null || \
|
|
(echo "configuration failed, please install autoconf first" && exit 1)
|
|
autoreconf --install --force --warnings=all
|