blob: 5a4f6d2536515d31cc09a17a47ab81296ecff8b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#! /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 configure
rm -rf autom4te.cache
echo "TOOLS VERIONS:"
for tool in autoheader autoconf libtool libtoolize aclocal automake; do
$tool --version | head -1
done
echo "UPDATING:"
aclocal
autoheader
autoconf
libtoolize
automake --foreign
|