mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-05-09 14:56:14 +00:00
12 lines
261 B
Bash
Executable File
12 lines
261 B
Bash
Executable File
#! /bin/sh
|
|
#
|
|
# When local system does not have the latest autoconf/automake
|
|
# -- Kunihiro Ishiguro <kunihiro@zebra.org>
|
|
#
|
|
rm -f config.cache Makefile.in aclocal.m4 config.h.in
|
|
rm -f autom4te.cache configure
|
|
aclocal
|
|
autoheader
|
|
autoconf
|
|
automake --foreign
|