This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [commit] Copyright update script


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  <dan@codesourcery.com>
+
+	* copyright.sh: Clarify error.
+
 2007-01-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
 
 	* 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
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]