summaryrefslogtreecommitdiff
path: root/update-autotools
diff options
context:
space:
mode:
authorGreg Troxel <gdt@fnord.ir.bbn.com>2007-02-02 16:52:38 +0000
committerGreg Troxel <gdt@fnord.ir.bbn.com>2007-02-02 16:52:38 +0000
commitcf4a2bbeeaacbe97e88f737bcd904fbc9cf5e237 (patch)
treefb2e87c21c1335f89a24248530a09d89cf45caf7 /update-autotools
parentbc20c1a4638db3b92a2e2f7f4b820e60f30a6146 (diff)
* README.NetBSD: use update-autotools instead of autoreconf
* update-autotools: print out tool name before invoking to aid debugging
Diffstat (limited to 'update-autotools')
-rwxr-xr-xupdate-autotools8
1 files changed, 6 insertions, 2 deletions
diff --git a/update-autotools b/update-autotools
index 4e055bc5..d5db16d6 100755
--- a/update-autotools
+++ b/update-autotools
@@ -5,6 +5,7 @@
#
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."
@@ -15,10 +16,13 @@ for tool in autoheader autoconf libtool libtoolize aclocal automake; do
$tool --version | head -1
done
-echo "UPDATING:"
+echo "ACLOCAL:"
aclocal -I m4
+echo "AUTOHEADER:"
autoheader
+echo "AUTOCONF:"
autoconf
+echo "LIBTOOLIZE:"
libtoolize -c
+echo "AUTOMAKE"
automake --gnu --add-missing --copy
-