2f9f082b5e
git-subtree-dir: src/univalue git-subtree-split: 87d90455ff5e87dedc304353aa23ace47ffb6c1c
9 lines
214 B
Bash
Executable file
9 lines
214 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
|