2002-12-13 21:15:29 +01:00
|
|
|
#! /bin/sh
|
|
|
|
#
|
|
|
|
# When local system does not have the latest autoconf/automake
|
|
|
|
# -- Kunihiro Ishiguro <kunihiro@zebra.org>
|
|
|
|
#
|
2004-08-17 14:27:32 +02:00
|
|
|
|
2004-06-30 15:24:42 +02:00
|
|
|
rm -f config.cache Makefile.in aclocal.m4 config.h.in configure
|
|
|
|
rm -rf autom4te.cache
|
2004-08-17 14:27:32 +02:00
|
|
|
|
2004-08-19 06:41:21 +02:00
|
|
|
echo "This $0 script is deprecated, and will be removed at some stage."
|
|
|
|
echo "Please use the 'autoreconf' command included with autoconf."
|
|
|
|
|
2004-08-17 14:27:32 +02:00
|
|
|
echo "TOOLS VERIONS:"
|
|
|
|
for tool in autoheader autoconf libtool libtoolize aclocal automake; do
|
|
|
|
$tool --version | head -1
|
|
|
|
done
|
|
|
|
|
|
|
|
echo "UPDATING:"
|
2002-12-13 21:15:29 +01:00
|
|
|
aclocal
|
|
|
|
autoheader
|
|
|
|
autoconf
|
2004-06-30 19:36:11 +02:00
|
|
|
libtoolize
|
2002-12-13 21:15:29 +01:00
|
|
|
automake --foreign
|