summaryrefslogtreecommitdiff
path: root/ld/ldver.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2001-10-02 06:04:23 +0000
committerAlan Modra <amodra@bigpond.net.au>2001-10-02 06:04:23 +0000
commit58e5b4fdc30e30e5aa7b0af15333386c836473dc (patch)
treeba7bfb0afeb4327556f917df71814ade32e97fef /ld/ldver.c
parent84d5590a1e5892ed9ce90a8d34e72241e707ab79 (diff)
downloadbinutils-redhat-58e5b4fdc30e30e5aa7b0af15333386c836473dc.tar.gz
* ldver.h (ld_program_version): Remove declaration.
* lexsup.c (parse_args): Move printing of copyright message.. * ldver.c (ldversion): .. to here. Use BFD_VERSION_STRING in place of BFD_VERSION. (ld_program_version): Remove. * Makefile.am (Makefile): Depend on bfd/configure.in Run "make dep-am" * Makefile.in: Regenerate.
Diffstat (limited to 'ld/ldver.c')
-rw-r--r--ld/ldver.c18
1 files changed, 12 insertions, 6 deletions
diff --git a/ld/ldver.c b/ld/ldver.c
index a50b5480c4..d2a1c3feac 100644
--- a/ld/ldver.c
+++ b/ld/ldver.c
@@ -1,5 +1,5 @@
/* ldver.c -- Print linker version.
- Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000
+ Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000, 2001
Free Software Foundation, Inc.
This file is part of GLD, the Gnu Linker.
@@ -30,16 +30,22 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include "ldemul.h"
#include "ldmain.h"
-const char *ld_program_version = VERSION;
-
void
ldversion (noisy)
int noisy;
{
- fprintf (stdout, _("GNU ld version %s (with BFD %s)\n"),
- ld_program_version, BFD_VERSION);
+ /* Output for noisy == 2 is intended to follow the GNU standards. */
+ fprintf (stdout, _("GNU ld version %s\n"), BFD_VERSION_STRING);
+
+ if (noisy & 2)
+ {
+ printf (_("Copyright 2001 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"));
+ }
- if (noisy)
+ if (noisy & 1)
{
ld_emulation_xfer_type **ptr = ld_emulations;