This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


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

Time to update the copyright notices.


Hi Guys,

  According to the GNU coding standards, --version should include the
  most recent copyright year.  This patch updates the year to 2001 for
  ld, gas and the binutils.

Cheers
	Nick

binutils
2001-01-12  Nick Clifton  <nickc@redhat.com>

	* version.c (print_version): Update copyright date.

gas
2001-01-12  Nick Clifton  <nickc@redhat.com>

	* as.c (print_args): Update copyright date to 2001.

ld
2001-01-12  Nick Clifton  <nickc@redhat.com>

	* lexsup.c (parse_args): Update copyright date.


Index: binutils/version.c
===================================================================
RCS file: /cvs/src//src/binutils/version.c,v
retrieving revision 1.2
diff -p -r1.2 version.c
*** version.c	2000/04/07 04:34:50	1.2
--- version.c	2001/01/12 17:57:55
***************
*** 1,5 ****
  /* version.c -- binutils version information
!    Copyright 1991, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
  
  This file is part of GNU Binutils.
  
--- 1,5 ----
  /* version.c -- binutils version information
!    Copyright 1991, 96, 97, 98, 99, 2000, 2001 Free Software Foundation, Inc.
  
  This file is part of GNU Binutils.
  
*************** print_version (name)
*** 36,42 ****
    /* This output is intended to follow the GNU standards document.  */
    /* xgettext:c-format */
    printf ("GNU %s %s\n", name, program_version);
!   printf (_("Copyright 1997, 98, 99, 2000 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"));
--- 36,42 ----
    /* This output is intended to follow the GNU standards document.  */
    /* xgettext:c-format */
    printf ("GNU %s %s\n", name, program_version);
!   printf (_("Copyright 1997, 98, 99, 2000, 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"));


Index: gas/as.c
===================================================================
RCS file: /cvs/src//src/gas/as.c,v
retrieving revision 1.23
diff -p -r1.23 as.c
*** as.c	2000/12/05 00:56:02	1.23
--- as.c	2001/01/12 17:57:55
***************
*** 1,5 ****
  /* as.c - GAS main program.
!    Copyright (C) 1987, 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
     Free Software Foundation, Inc.
  
     This file is part of GAS, the GNU Assembler.
--- 1,5 ----
  /* as.c - GAS main program.
!    Copyright (C) 1987, 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 2001
     Free Software Foundation, Inc.
  
     This file is part of GAS, the GNU Assembler.
*************** parse_args (pargc, pargv)
*** 525,531 ****
  	case OPTION_VERSION:
  	  /* This output is intended to follow the GNU standards document.  */
  	  printf (_("GNU assembler %s\n"), VERSION);
! 	  printf (_("Copyright 2000 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"));
--- 525,531 ----
  	case OPTION_VERSION:
  	  /* This output is intended to follow the GNU standards document.  */
  	  printf (_("GNU assembler %s\n"), VERSION);
! 	  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"));

Index: ld/lexsup.c
===================================================================
RCS file: /cvs/src//src/ld/lexsup.c,v
retrieving revision 1.26
diff -p -r1.26 lexsup.c
*** lexsup.c	2000/12/31 19:56:03	1.26
--- lexsup.c	2001/01/12 17:57:55
***************
*** 1,5 ****
  /* Parse options for the GNU linker.
!    Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000
     Free Software Foundation, Inc.
  
  This file is part of GLD, the Gnu Linker.
--- 1,5 ----
  /* Parse options for the GNU linker.
!    Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 2001
     Free Software Foundation, Inc.
  
  This file is part of GLD, the Gnu Linker.
*************** parse_args (argc, argv)
*** 983,989 ****
  	case OPTION_VERSION:
  	  /* This output is intended to follow the GNU standards document.  */
  	  printf ("GNU ld %s\n", ld_program_version);
! 	  printf (_("Copyright 2000 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"));
--- 983,989 ----
  	case OPTION_VERSION:
  	  /* This output is intended to follow the GNU standards document.  */
  	  printf ("GNU ld %s\n", ld_program_version);
! 	  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"));


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