]> git.proxmox.com Git - mirror_frr.git/blobdiff - update-autotools
Merge pull request #2267 from donaldsharp/flim_flam
[mirror_frr.git] / update-autotools
index 86dc000c81a5bc13d0bf261f8a3bf77bd2a865e2..d5db16d6198a94ed8147bf5dcbb3e4ed8c4fec18 100755 (executable)
@@ -3,9 +3,26 @@
 # 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 config.guess config.sub ltmain.sh
 rm -rf autom4te.cache
-aclocal
+
+echo "This $0 script is deprecated, and will be removed at some stage."
+echo "Please use the 'autoreconf' command included with autoconf."
+
+echo "TOOLS VERIONS:"
+for tool in autoheader autoconf libtool libtoolize aclocal automake; do
+  $tool --version | head -1
+done
+
+echo "ACLOCAL:"
+aclocal -I m4
+echo "AUTOHEADER:"
 autoheader
+echo "AUTOCONF:"
 autoconf
-automake --foreign
+echo "LIBTOOLIZE:"
+libtoolize -c
+echo "AUTOMAKE"
+automake --gnu --add-missing --copy