blob: 4ec443d930e45ea59fca457b53885e1a0e920458 [file] [log] [blame]
Everton Marques871dbcf2009-08-11 15:43:05 -03001#! /bin/bash
2#
3# Bootstrap Quagga autotools for pimd.
4#
5# Run from quagga's top dir as:
6# ./pimd/quagga-bootstrap.sh
7#
8# $QuaggaId: $Format:%an, %ai, %h$ $
9
10me=`basename $0`
11msg () {
12 echo >&2 $me: $*
13}
14
15if [ -f ./bootstrap.sh ]; then
16 msg found ./bootstrap.sh from quagga
17 ./bootstrap.sh
18else
19 msg missing ./bootstrap.sh from quagga
Everton Marquesb9ef7702010-08-27 18:11:10 -030020 #autoreconf -i --force
21 #bootstrap from tarball prefers autoreconf -i
22 autoreconf -i
Everton Marques871dbcf2009-08-11 15:43:05 -030023fi