blob: 4ec443d930e45ea59fca457b53885e1a0e920458 [file] [log] [blame]
#! /bin/bash
#
# Bootstrap Quagga autotools for pimd.
#
# Run from quagga's top dir as:
# ./pimd/quagga-bootstrap.sh
#
# $QuaggaId: $Format:%an, %ai, %h$ $
me=`basename $0`
msg () {
echo >&2 $me: $*
}
if [ -f ./bootstrap.sh ]; then
msg found ./bootstrap.sh from quagga
./bootstrap.sh
else
msg missing ./bootstrap.sh from quagga
#autoreconf -i --force
#bootstrap from tarball prefers autoreconf -i
autoreconf -i
fi