diff options
author | Joseph Myers <joseph@codesourcery.com> | 2007-03-01 15:48:36 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2007-03-01 15:48:36 +0000 |
commit | 066c2a57f5858310c9f12518317aecd4b54e753d (patch) | |
tree | 96c1e2aa519334dca5944619f25d68a93266c8ee /ld/ldver.c | |
parent | 563d09a555bb80235a244a71040dff9dd610e0e6 (diff) | |
download | gdb-066c2a57f5858310c9f12518317aecd4b54e753d.zip gdb-066c2a57f5858310c9f12518317aecd4b54e753d.tar.gz gdb-066c2a57f5858310c9f12518317aecd4b54e753d.tar.bz2 |
bfd:
* Makefile.am (bfdver.h): Use "." not " " between version number
and date.
* Makefile.in: Regenerate.
* configure.in (PKGVERSION): Default to "(GNU Binutils) ".
* configure: Regenerate.
binutils:
* version.c (print_version): Update copyright date.
gas:
* as.c (parse_args): Update copyright date.
gprof:
* gprof.c: Include bfdver.h
(main): Use BFD_VERSION_STRING for version number and package
name.
* Makefile.am (PKGVERSION): Remove.
(INCLUDES): Update.
Regenerate dependencies.
* Makefile.in: Regenerate.
* configure.in (PKGVERSION): Remove.
* configure: Regenerate.
ld:
* ldver.c (ldversion): Remove word "version" from output. Update
copyright date.
Diffstat (limited to 'ld/ldver.c')
-rw-r--r-- | ld/ldver.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ /* ldver.c -- Print linker version. Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000, 2001, 2002, - 2003 Free Software Foundation, Inc. + 2003, 2007 Free Software Foundation, Inc. This file is part of GLD, the Gnu Linker. @@ -35,11 +35,11 @@ void ldversion (int noisy) { /* Output for noisy == 2 is intended to follow the GNU standards. */ - fprintf (stdout, _("GNU ld version %s\n"), BFD_VERSION_STRING); + fprintf (stdout, _("GNU ld %s\n"), BFD_VERSION_STRING); if (noisy & 2) { - printf (_("Copyright 2005 Free Software Foundation, Inc.\n")); + printf (_("Copyright 2007 Free Software Foundation, Inc.\n")); printf (_("\ This program is free software; you may redistribute it under the terms of\n\ the GNU General Public License. This program has absolutely no warranty.\n")); |