summaryrefslogtreecommitdiffstats
path: root/pimd/quagga-bootstrap.sh
blob: 1ad9a121b463778050655ac789c61d0c9fd78b1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /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
fi