* README.NetBSD: use update-autotools instead of autoreconf

* update-autotools: print out tool name before invoking to aid debugging
This commit is contained in:
Greg Troxel 2007-02-02 16:52:38 +00:00
parent bc20c1a463
commit cf4a2bbeea
3 changed files with 14 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2007-02-02 Greg Troxel <Greg Troxel <gdt@ir.bbn.com>>
* README.NetBSD: use update-autotools instead of autoreconf
* update-autotools: print out tool name before invoking to aid debugging
2006-12-08 Paul Jakma <paul.jakma@sun.com> 2006-12-08 Paul Jakma <paul.jakma@sun.com>
* configure.ac: Bump to 0.99.6 * configure.ac: Bump to 0.99.6

View File

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
$Id: README.NetBSD,v 1.1 2005/12/29 15:40:49 gdt Exp $ $Id$
# This file is helpful for building quagga from cvs on NetBSD, and # This file is helpful for building quagga from cvs on NetBSD, and
# probably on any system using pkgsrc. # probably on any system using pkgsrc.
@ -9,7 +9,7 @@ $Id: README.NetBSD,v 1.1 2005/12/29 15:40:49 gdt Exp $
case $1 in case $1 in
build) build)
autoreconf -i -s ./update-autotools
LDFLAGS="-L/usr/pkg/lib -R/usr/pkg/lib" CPPFLAGS="-I/usr/pkg/include" \ LDFLAGS="-L/usr/pkg/lib -R/usr/pkg/lib" CPPFLAGS="-I/usr/pkg/include" \
./configure --prefix=/usr/quagga \ ./configure --prefix=/usr/quagga \
--sysconfdir=/etc/zebra --localstatedir=/var/run/zebra \ --sysconfdir=/etc/zebra --localstatedir=/var/run/zebra \

View File

@ -5,6 +5,7 @@
# #
rm -f config.cache Makefile.in aclocal.m4 config.h.in configure rm -f config.cache Makefile.in aclocal.m4 config.h.in configure
rm -rf config.guess config.sub ltmain.sh
rm -rf autom4te.cache rm -rf autom4te.cache
echo "This $0 script is deprecated, and will be removed at some stage." 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 $tool --version | head -1
done done
echo "UPDATING:" echo "ACLOCAL:"
aclocal -I m4 aclocal -I m4
echo "AUTOHEADER:"
autoheader autoheader
echo "AUTOCONF:"
autoconf autoconf
echo "LIBTOOLIZE:"
libtoolize -c libtoolize -c
echo "AUTOMAKE"
automake --gnu --add-missing --copy automake --gnu --add-missing --copy