mirror of
https://github.com/FRRouting/frr.git
synced 2025-05-01 05:57:15 +02:00
15 lines
264 B
Plaintext
15 lines
264 B
Plaintext
![]() |
#! /bin/sh
|
||
|
#
|
||
|
# When local system does not have the latest autoconf/automake
|
||
|
# -- Kunihiro Ishiguro <kunihiro@zebra.org>
|
||
|
#
|
||
|
rm -f config.cache
|
||
|
rm -f Makefile.in
|
||
|
rm -f aclocal.m4
|
||
|
rm -f config.h.in
|
||
|
rm -f configure
|
||
|
aclocal
|
||
|
autoheader
|
||
|
autoconf
|
||
|
automake --foreign
|