This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: --with-pkgversion and --with-bugurl support for GDB
- From: "Joseph S. Myers" <joseph at codesourcery dot com>
- To: Eli Zaretskii <eliz at gnu dot org>
- Cc: drow at false dot org, gdb-patches at sourceware dot org
- Date: Fri, 6 Jun 2008 20:21:41 +0000 (UTC)
- Subject: Re: --with-pkgversion and --with-bugurl support for GDB
- References: <Pine.LNX.4.64.0805191702570.19513@digraph.polyomino.org.uk> <ufxsei0tu.fsf@gnu.org> <Pine.LNX.4.64.0805191942380.1489@digraph.polyomino.org.uk> <ubq31irlm.fsf@gnu.org> <Pine.LNX.4.64.0805201608130.12876@digraph.polyomino.org.uk> <20080605202431.GK25085@caradoc.them.org> <Pine.LNX.4.64.0806052127230.9469@digraph.polyomino.org.uk> <ufxrqc1cb.fsf@gnu.org>
On Fri, 6 Jun 2008, Eli Zaretskii wrote:
> > Date: Thu, 5 Jun 2008 21:28:15 +0000 (UTC)
> > From: "Joseph S. Myers" <joseph@codesourcery.com>
> > cc: gdb-patches@sourceware.org
> >
> > +static void
> > +gdbreplay_version (void)
> > +{
> > + printf ("GNU gdbreplay %s%s\n"
> > + "Copyright (C) 2008 Free Software Foundation, Inc.\n"
> > + "gdbserver is free software, covered by the GNU General Public License.\n"
> > + "This gdbserver was configured as \"%s\"\n",
> > + PKGVERSION, version, host_name);
>
> We start by announcing a "GNU gdbreplay", but thereafter talk about
> "gdbserver". Is that right? Shouldn't we either (1) use gdbreplay
> throughout, or (2) say something like "GNU gdbreplay (gdbserver %s%s)"?
OK to commit this patch to say gdbreplay consistently?
2008-06-06 Joseph Myers <joseph@codesourcery.com>
* gdbreplay.c (gdbreplay_version): Say gdbreplay in version
message, not gdbserver.
Index: gdbreplay.c
===================================================================
RCS file: /cvs/src/src/gdb/gdbserver/gdbreplay.c,v
retrieving revision 1.17
diff -u -p -r1.17 gdbreplay.c
--- gdbreplay.c 5 Jun 2008 22:36:57 -0000 1.17
+++ gdbreplay.c 6 Jun 2008 20:20:18 -0000
@@ -396,8 +396,8 @@ gdbreplay_version (void)
{
printf ("GNU gdbreplay %s%s\n"
"Copyright (C) 2008 Free Software Foundation, Inc.\n"
- "gdbserver is free software, covered by the GNU General Public License.\n"
- "This gdbserver was configured as \"%s\"\n",
+ "gdbreplay is free software, covered by the GNU General Public License.\n"
+ "This gdbreplay was configured as \"%s\"\n",
PKGVERSION, version, host_name);
}
--
Joseph S. Myers
joseph@codesourcery.com