blob: cefc2aba42e24a46e5f1f00ddf802b44498683d1 [file] [log] [blame]
#!/bin/sh
# Make sure that we are in the right directory.
if test ! -f configure.ac; then
cat >&2 <<__EOF__
You must run bootstrap from the root of the distribution.
__EOF__
exit 1
fi
# Note that we don't use '--no-recursive' becuase older versions of
# autoconf/autoreconf bail with that option. Unfortunately this means
# that we'll modify a lot of files in third_party/libprocess, but that
# may change in the future.
autoreconf --install -Wall --verbose "${@}"