d48555b36a
git-subtree-dir: src/secp256k1 git-subtree-split: ad2028f9890ca40bdd32055aa0fe5c1c9af0e485
9 lines
229 B
Bash
Executable file
9 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
|