]> Git Repo - VerusCoin.git/blob - autogen.sh
Testnet fixes
[VerusCoin.git] / autogen.sh
1 #!/bin/sh
2 # Copyright (c) 2016-2019 The Zcash developers
3 # Copyright (c) 2013-2019 The Bitcoin Core developers
4 # Copyright (c) 2013-2019 Bitcoin Developers
5 # Distributed under the MIT software license, see the accompanying
6 # file COPYING or https://www.opensource.org/licenses/mit-license.php .
7
8 set -e
9 srcdir="$(dirname $0)"
10 cd "$srcdir"
11 if [ -z ${LIBTOOLIZE} ] && GLIBTOOLIZE="`which glibtoolize 2>/dev/null`"; then
12   LIBTOOLIZE="${GLIBTOOLIZE}"
13   export LIBTOOLIZE
14 fi
15 autoreconf --install --force --warnings=all
This page took 0.020241 seconds and 4 git commands to generate.