blob: 4c6be2f3808e59ea31097d6f1f71b3313d2ab254 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#! /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
|