mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-19 09:53:47 +01:00
10 lines
229 B
Bash
Executable File
10 lines
229 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
srcdir="$(dirname $0)"
|
|
cd "$srcdir"
|
|
if [ -z ${LIBTOOLIZE} ] && GLIBTOOLIZE="`which glibtoolize 2>/dev/null`"; then
|
|
LIBTOOLIZE="${GLIBTOOLIZE}"
|
|
export LIBTOOLIZE
|
|
fi
|
|
autoreconf --install --force --warnings=all
|