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