diff options
author | gdt <gdt> | 2004-08-17 14:27:32 +0200 |
---|---|---|
committer | gdt <gdt> | 2004-08-17 14:27:32 +0200 |
commit | 2990460691f1d674180154fd4bcee64d8f745277 (patch) | |
tree | 5bc8387161c18cccab552e56c6cd49bb14684469 /update-autotools | |
parent | SVN revisions 916-920 from Zebra. ABR support is almost done. (diff) | |
download | frr-2990460691f1d674180154fd4bcee64d8f745277.tar.xz frr-2990460691f1d674180154fd4bcee64d8f745277.zip |
2004-08-17 Greg Troxel <gdt@fnord.ir.bbn.com>
* update-autotools: print tools versions to aid people in sending
bug reports.
Diffstat (limited to 'update-autotools')
-rwxr-xr-x | update-autotools | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/update-autotools b/update-autotools index 860ee8f13..5a4f6d253 100755 --- a/update-autotools +++ b/update-autotools @@ -3,8 +3,16 @@ # 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 |