summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am1
-rw-r--r--doc/developer/ospf-api.rst1
-rwxr-xr-xupdate-autotools28
3 files changed, 0 insertions, 30 deletions
diff --git a/Makefile.am b/Makefile.am
index 4316964303..df03da3b60 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -84,7 +84,6 @@ endif
EXTRA_DIST += \
aclocal.m4 \
- update-autotools \
m4/README.txt \
\
python/clidef.py \
diff --git a/doc/developer/ospf-api.rst b/doc/developer/ospf-api.rst
index 5f0b830c8c..90fc52efd0 100644
--- a/doc/developer/ospf-api.rst
+++ b/doc/developer/ospf-api.rst
@@ -77,7 +77,6 @@ the ospfapi server and ospfclient).
::
- % update-autotools
% sh ./configure --enable-opaque-lsa
% make
diff --git a/update-autotools b/update-autotools
deleted file mode 100755
index d5db16d619..0000000000
--- a/update-autotools
+++ /dev/null
@@ -1,28 +0,0 @@
-#! /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 configure
-rm -rf config.guess config.sub ltmain.sh
-rm -rf autom4te.cache
-
-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
-echo "LIBTOOLIZE:"
-libtoolize -c
-echo "AUTOMAKE"
-automake --gnu --add-missing --copy