Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit cf4a2bb

Browse files
author
Greg Troxel
committed
* README.NetBSD: use update-autotools instead of autoreconf
* update-autotools: print out tool name before invoking to aid debugging
1 parent bc20c1a commit cf4a2bb

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

ChangeLog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2007-02-02 Greg Troxel <Greg Troxel <gdt@ir.bbn.com>>
2+
3+
* README.NetBSD: use update-autotools instead of autoreconf
4+
5+
* update-autotools: print out tool name before invoking to aid debugging
6+
17
2006-12-08 Paul Jakma <paul.jakma@sun.com>
28

39
* configure.ac: Bump to 0.99.6

README.NetBSD

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
$Id: README.NetBSD,v 1.1 2005/12/29 15:40:49 gdt Exp $
3+
$Id$
44

55
# This file is helpful for building quagga from cvs on NetBSD, and
66
# probably on any system using pkgsrc.
@@ -9,7 +9,7 @@ $Id: README.NetBSD,v 1.1 2005/12/29 15:40:49 gdt Exp $
99
case $1 in
1010

1111
build)
12-
autoreconf -i -s
12+
./update-autotools
1313
LDFLAGS="-L/usr/pkg/lib -R/usr/pkg/lib" CPPFLAGS="-I/usr/pkg/include" \
1414
./configure --prefix=/usr/quagga \
1515
--sysconfdir=/etc/zebra --localstatedir=/var/run/zebra \

update-autotools

+6-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#
66

77
rm -f config.cache Makefile.in aclocal.m4 config.h.in configure
8+
rm -rf config.guess config.sub ltmain.sh
89
rm -rf autom4te.cache
910

1011
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
1516
$tool --version | head -1
1617
done
1718

18-
echo "UPDATING:"
19+
echo "ACLOCAL:"
1920
aclocal -I m4
21+
echo "AUTOHEADER:"
2022
autoheader
23+
echo "AUTOCONF:"
2124
autoconf
25+
echo "LIBTOOLIZE:"
2226
libtoolize -c
27+
echo "AUTOMAKE"
2328
automake --gnu --add-missing --copy
24-

0 commit comments

Comments
 (0)