]> git.proxmox.com Git - mirror_frr.git/commitdiff
* README.NetBSD: use update-autotools instead of autoreconf
authorGreg Troxel <gdt@fnord.ir.bbn.com>
Fri, 2 Feb 2007 16:52:38 +0000 (16:52 +0000)
committerGreg Troxel <gdt@fnord.ir.bbn.com>
Fri, 2 Feb 2007 16:52:38 +0000 (16:52 +0000)
* update-autotools: print out tool name before invoking to aid debugging

ChangeLog
README.NetBSD
update-autotools

index 98ebfe76a010a9df36ed9ec230bf5102ad8c15cf..a54249d75f4b9987b171ee9782ab3a5501ba3ad9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        * configure.ac: Bump to 0.99.6
index e859728a837a6d6d16037a13f750e0d691cb2196..f3582454cfa43a2d178b4102e43a0e51b453979c 100755 (executable)
@@ -1,6 +1,6 @@
 #!/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
 # 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
 
     build)
-       autoreconf -i -s
+       ./update-autotools
        LDFLAGS="-L/usr/pkg/lib -R/usr/pkg/lib" CPPFLAGS="-I/usr/pkg/include" \
        ./configure --prefix=/usr/quagga \
            --sysconfdir=/etc/zebra --localstatedir=/var/run/zebra \
index 4e055bc585d7d09d4c6452243c3c969f96be4fb6..d5db16d6198a94ed8147bf5dcbb3e4ed8c4fec18 100755 (executable)
@@ -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
-