From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21068 invoked by alias); 9 Jan 2007 22:47:16 -0000 Received: (qmail 21053 invoked by uid 22791); 9 Jan 2007 22:47:14 -0000 X-Spam-Check-By: sourceware.org Received: from nevyn.them.org (HELO nevyn.them.org) (66.93.172.17) by sourceware.org (qpsmtpd/0.31.1) with ESMTP; Tue, 09 Jan 2007 22:47:05 +0000 Received: from drow by nevyn.them.org with local (Exim 4.63) (envelope-from ) id 1H4PkF-0001wK-RL; Tue, 09 Jan 2007 17:47:03 -0500 Date: Tue, 09 Jan 2007 22:47:00 -0000 From: Daniel Jacobowitz To: Eli Zaretskii Cc: gdb-patches@sourceware.org Subject: Re: [commit] Copyright update script Message-ID: <20070109224703.GK30631@nevyn.them.org> Mail-Followup-To: Eli Zaretskii , gdb-patches@sourceware.org References: <20070109175022.GA23497@nevyn.them.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.13 (2006-08-11) X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2007-01/txt/msg00279.txt.bz2 On Wed, Jan 10, 2007 at 12:11:57AM +0200, Eli Zaretskii wrote: > > I'm going to check in the corresponding updates in a moment (without a > > ChangeLog entry, since they touch almost every file and are completely > > mechanical). > > How about at least adding an entry saying that 2007 was added > everywhere? I was going to, but there's too many different changelog files, so I gave up :-) Roughly thirty. If you think it's important, I'll go back and add them, but I don't think it's a big deal. > > + echo "error: $EMACS is too old; use at least an Emacs 22 snapshot." >&2 > > Maybe we should say something like "Emacs 22.0.XX snapshot". A year > from now "Emacs 22" might be ambiguous, if we have 22.1 and 22.2 by > that time. Fine with me :-) I checked it in. -- Daniel Jacobowitz CodeSourcery Index: ChangeLog =================================================================== RCS file: /cvs/src/src/gdb/ChangeLog,v retrieving revision 1.8101 diff -u -p -r1.8101 ChangeLog --- ChangeLog 9 Jan 2007 22:43:08 -0000 1.8101 +++ ChangeLog 9 Jan 2007 22:45:58 -0000 @@ -1,3 +1,7 @@ +2007-01-09 Daniel Jacobowitz + + * copyright.sh: Clarify error. + 2007-01-09 Jan Kratochvil * symtab.c (matching_bfd_sections): Fix VMA matching for Index: copyright.sh =================================================================== RCS file: /cvs/src/src/gdb/copyright.sh,v retrieving revision 1.2 diff -u -p -r1.2 copyright.sh --- copyright.sh 9 Jan 2007 21:37:30 -0000 1.2 +++ copyright.sh 9 Jan 2007 22:45:58 -0000 @@ -93,7 +93,7 @@ set -f version=`$EMACS --version | sed 's/GNU Emacs \([0-9]*\)\..*/\1/; 1q'` if test "$version" -lt 22; then - echo "error: $EMACS is too old; use at least an Emacs 22 snapshot." >&2 + echo "error: $EMACS is too old; use at least an Emacs 22.0.XX snapshot." >&2 exit 1 fi