From: Alan Modra Date: Thu, 4 May 2000 05:37:28 +0000 (+0000) Subject: Just mention current year in printed copyright message. X-Git-Tag: binutils-2_10~45 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6d4c8ca430ba0efa5af7f336be292638e1ed520c;p=thirdparty%2Fbinutils-gdb.git Just mention current year in printed copyright message. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 02ea997ac8a..6ea99c3b2d8 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2000-05-04 Alan Modra + + * as.c (parse_args): Just mention current year in printed + copyright message. + 2000-05-03 Ian Lance Taylor * config/atof-ieee.c (gen_to_words): When adding carry back in, diff --git a/gas/as.c b/gas/as.c index 55638de1e3f..f02c42a9b1b 100644 --- a/gas/as.c +++ b/gas/as.c @@ -514,8 +514,7 @@ parse_args (pargc, pargv) case OPTION_VERSION: /* This output is intended to follow the GNU standards document. */ printf (_("GNU assembler %s\n"), VERSION); - printf (_("\ -Copyright 1997, 1998, 1999, 2000 Free Software Foundation, Inc.\n")); + 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"));