mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
a26bad09b6
0c4e6ce
Add MIT license to build-aux/m4 scripts (Luke Dashjr)3f8a5d8
Trivial: build-aux/m4/l_atomic: Fix typo (Luke Dashjr)3b4b6dc
Add MIT license to autogen.sh and share/genbuild.sh (Luke Dashjr)f4dffdd
Add MIT license to Makefiles (Luke Dashjr)
16 lines
527 B
Bash
Executable File
16 lines
527 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.
|
|
|
|
set -e
|
|
srcdir="$(dirname $0)"
|
|
cd "$srcdir"
|
|
if [ -z ${LIBTOOLIZE} ] && GLIBTOOLIZE="`which glibtoolize 2>/dev/null`"; then
|
|
LIBTOOLIZE="${GLIBTOOLIZE}"
|
|
export LIBTOOLIZE
|
|
fi
|
|
which autoreconf >/dev/null || \
|
|
(echo "configuration failed, please install autoconf first" && exit 1)
|
|
autoreconf --install --force --warnings=all
|