Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
bitcoin/autogen.sh
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
25 lines (23 sloc)
935 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Copyright (c) 2013-2019 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 | |
if expr "'$(build-aux/config.guess --timestamp)" \< "'$(depends/config.guess --timestamp)" > /dev/null; then | |
cp depends/config.guess build-aux | |
cp depends/config.guess src/secp256k1/build-aux | |
fi | |
if expr "'$(build-aux/config.sub --timestamp)" \< "'$(depends/config.sub --timestamp)" > /dev/null; then | |
cp depends/config.sub build-aux | |
cp depends/config.sub src/secp256k1/build-aux | |
fi |