mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
9 lines
216 B
Bash
Executable File
9 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
|