10 lines
214 B
Bash
10 lines
214 B
Bash
|
#!/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
|