diff options
Diffstat (limited to 'update-autotools')
-rwxr-xr-x | update-autotools | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/update-autotools b/update-autotools new file mode 100755 index 00000000..1eaeb390 --- /dev/null +++ b/update-autotools @@ -0,0 +1,14 @@ +#! /bin/sh +# +# When local system does not have the latest autoconf/automake +# -- Kunihiro Ishiguro <kunihiro@zebra.org> +# +rm -f config.cache +rm -f Makefile.in +rm -f aclocal.m4 +rm -f config.h.in +rm -f configure +aclocal +autoheader +autoconf +automake --foreign |