This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU Automake".
http://git.sv.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=605ed1982e3a92e38aef7bb1e4adb0d52ce16920 The branch, branch-1-10 has been updated via 605ed1982e3a92e38aef7bb1e4adb0d52ce16920 (commit) via a31fbca8db80bbe9eaa5ba1d119bfa94c155f86e (commit) from c32780b2231ce92f8664db360619a922e908b931 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 605ed1982e3a92e38aef7bb1e4adb0d52ce16920 Author: Ralf Wildenhues <[EMAIL PROTECTED]> Date: Sat Jan 19 10:51:25 2008 +0100 * lib/config.guess, lib/config.sub: Sync from upstream. commit a31fbca8db80bbe9eaa5ba1d119bfa94c155f86e Author: Ralf Wildenhues <[EMAIL PROTECTED]> Date: Sat Dec 8 11:06:03 2007 +0100 Fix `fetch' target to match current upstream locations. * Makefile.am (WGET_SV_CVS): Renamed from WGETSGO. (WGET_SV_GIT_AC, WGET_SV_GIT_GL, WGET_GCC): New. (fetch): Update to match current upstream locations. Signed-off-by: Ralf Wildenhues <[EMAIL PROTECTED]> ----------------------------------------------------------------------- Summary of changes: ChangeLog | 8 ++++++++ Makefile.am | 17 ++++++++++------- Makefile.in | 17 ++++++++++------- lib/config.guess | 6 +++--- lib/config.sub | 12 ++++++++---- 5 files changed, 39 insertions(+), 21 deletions(-) diff --git a/ChangeLog b/ChangeLog index d797bfa..9664ca7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,13 @@ 2008-01-19 Ralf Wildenhues <[EMAIL PROTECTED]> + * lib/config.guess, lib/config.sub: Sync from upstream. + + * Makefile.am (WGET_SV_CVS): Renamed from WGETSGO. + (WGET_SV_GIT_AC, WGET_SV_GIT_GL, WGET_GCC): New. + (fetch): Update to match current upstream locations. + +2008-01-19 Ralf Wildenhues <[EMAIL PROTECTED]> + * lib/gnupload: Revert last change. Add pointer to upload instructions of the GNU Maintenance Instructions. Suggestion by Karl Berry. diff --git a/Makefile.am b/Makefile.am index 6a370cf..11da917 100644 --- a/Makefile.am +++ b/Makefile.am @@ -360,7 +360,10 @@ path-check: distdir ## Program to use to fetch files. WGET = wget -WGETSGO = $(WGET) http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~ +WGET_SV_CVS = $(WGET) http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~/ +WGET_SV_GIT_AC = $(WGET) 'http://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=blob_plain;hb=HEAD;f=' +WGET_SV_GIT_GL = $(WGET) 'http://git.savannah.gnu.org/gitweb/?p=gnulib.git;a=blob_plain;hb=HEAD;f=' +WGET_GCC = $(WGET) 'http://gcc.gnu.org/viewcvs/*checkout*/trunk/' ## Files that we fetch and which we compare against. ## FIXME should be a lot more here @@ -378,12 +381,12 @@ fetch: mkdir Fetchdir ## If a get fails then that is a problem. (cd Fetchdir && \ - $(WGETSGO)/config/config/config.guess; \ - $(WGETSGO)/config/config/config.sub; \ - $(WGETSGO)/texinfo/texinfo/doc/texinfo.tex; \ - $(WGETSGO)/autoconf/autoconf/INSTALL; \ - $(WGETSGO)/gcc/gcc/config-ml.in; \ - $(WGETSGO)/gcc/gcc/symlink-tree) + $(WGET_SV_CVS)config/config/config.guess -O config.guess && \ + $(WGET_SV_CVS)config/config/config.sub -O config.sub && \ + $(WGET_SV_CVS)texinfo/texinfo/doc/texinfo.tex -O texinfo.tex && \ + $(WGET_SV_GIT_GL)doc/INSTALL -O INSTALL && \ + $(WGET_GCC)config-ml.in -O config-ml.in && \ + $(WGET_GCC)symlink-tree -O symlink-tree) ## Don't exit after test because we want to give as many errors as ## possible. @stat=0; for file in $(FETCHFILES); do \ diff --git a/Makefile.in b/Makefile.in index d2a24e9..d82bd67 100644 --- a/Makefile.in +++ b/Makefile.in @@ -188,7 +188,10 @@ do_subst = sed \ -e 's,[EMAIL PROTECTED]@],$(datadir),g' WGET = wget -WGETSGO = $(WGET) http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~ +WGET_SV_CVS = $(WGET) http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~/ +WGET_SV_GIT_AC = $(WGET) 'http://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=blob_plain;hb=HEAD;f=' +WGET_SV_GIT_GL = $(WGET) 'http://git.savannah.gnu.org/gitweb/?p=gnulib.git;a=blob_plain;hb=HEAD;f=' +WGET_GCC = $(WGET) 'http://gcc.gnu.org/viewcvs/*checkout*/trunk/' FETCHFILES = \ INSTALL \ config-ml.in \ @@ -898,12 +901,12 @@ fetch: rm -rf Fetchdir > /dev/null 2>&1 mkdir Fetchdir (cd Fetchdir && \ - $(WGETSGO)/config/config/config.guess; \ - $(WGETSGO)/config/config/config.sub; \ - $(WGETSGO)/texinfo/texinfo/doc/texinfo.tex; \ - $(WGETSGO)/autoconf/autoconf/INSTALL; \ - $(WGETSGO)/gcc/gcc/config-ml.in; \ - $(WGETSGO)/gcc/gcc/symlink-tree) + $(WGET_SV_CVS)config/config/config.guess -O config.guess && \ + $(WGET_SV_CVS)config/config/config.sub -O config.sub && \ + $(WGET_SV_CVS)texinfo/texinfo/doc/texinfo.tex -O texinfo.tex && \ + $(WGET_SV_GIT_GL)doc/INSTALL -O INSTALL && \ + $(WGET_GCC)config-ml.in -O config-ml.in && \ + $(WGET_GCC)symlink-tree -O symlink-tree) @stat=0; for file in $(FETCHFILES); do \ if diff -u $(srcdir)/lib/$$file Fetchdir/$$file \ >>Fetchdir/update.patch 2>/dev/null; then :; \ diff --git a/lib/config.guess b/lib/config.guess index 4dc5a78..ca2a03c 100755 --- a/lib/config.guess +++ b/lib/config.guess @@ -4,7 +4,7 @@ # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 # Free Software Foundation, Inc. -timestamp='2008-01-07' +timestamp='2008-01-08' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -56,8 +56,8 @@ version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -Free Software Foundation, Inc. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." diff --git a/lib/config.sub b/lib/config.sub index ae780f3..6759825 100755 --- a/lib/config.sub +++ b/lib/config.sub @@ -1,10 +1,10 @@ #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 # Free Software Foundation, Inc. -timestamp='2008-01-07' +timestamp='2008-01-16' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -72,8 +72,8 @@ Report bugs and patches to <[EMAIL PROTECTED]>." version="\ GNU config.sub ($timestamp) -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -Free Software Foundation, Inc. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -1049,6 +1049,10 @@ case $basic_machine in basic_machine=tic6x-unknown os=-coff ;; + tile*) + basic_machine=tile-unknown + os=-linux-gnu + ;; tx39) basic_machine=mipstx39-unknown ;; hooks/post-receive -- GNU Automake