]> git.proxmox.com Git - mirror_frr.git/blame - update-autotools
lib: remove invalid assert
[mirror_frr.git] / update-autotools
CommitLineData
718e3744 1#! /bin/sh
2#
3# When local system does not have the latest autoconf/automake
4# -- Kunihiro Ishiguro <kunihiro@zebra.org>
5#
29904606 6
cf313889 7rm -f config.cache Makefile.in aclocal.m4 config.h.in configure
cf4a2bbe 8rm -rf config.guess config.sub ltmain.sh
cf313889 9rm -rf autom4te.cache
29904606 10
0fc42949 11echo "This $0 script is deprecated, and will be removed at some stage."
12echo "Please use the 'autoreconf' command included with autoconf."
13
29904606 14echo "TOOLS VERIONS:"
15for tool in autoheader autoconf libtool libtoolize aclocal automake; do
16 $tool --version | head -1
17done
18
cf4a2bbe 19echo "ACLOCAL:"
72e2d828 20aclocal -I m4
cf4a2bbe 21echo "AUTOHEADER:"
718e3744 22autoheader
cf4a2bbe 23echo "AUTOCONF:"
718e3744 24autoconf
cf4a2bbe 25echo "LIBTOOLIZE:"
ddb07e5b 26libtoolize -c
cf4a2bbe 27echo "AUTOMAKE"
14c17fd8 28automake --gnu --add-missing --copy