From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2100) id 8230D3861004; Sat, 22 Aug 2020 22:44:23 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8230D3861004 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1598136263; bh=OZD8B3QkvWilJmESc4ZHgUDepDE3D5hHUdPsLCmVNQg=; h=From:To:Subject:Date:From; b=P8PMtS5/jYdRogzqnP82BeMYiF36jl6sPvEM3aeEMzL26LHiBsMYISdrTp6mxu6k6 UlqEsZG6j65to3uZ6O4AHMkK61Hhlg9EdeOzFUyYfLQ0D3l70AZwsX/tv37+B5rdGc DibCvkhYMbUO9kDV7xS6b2sYvv/UDsP0Jw4/JdnE= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Giuliano Belinassi To: gcc-cvs@gcc.gnu.org Subject: [gcc/devel/autopar_devel] gcov*: collapse lisence header to 2 lines in --version. X-Act-Checkin: gcc X-Git-Author: Martin Liska X-Git-Refname: refs/heads/devel/autopar_devel X-Git-Oldrev: 52213be968dea2f193508f9d288e67c04645dc5b X-Git-Newrev: ef7303162744a4b02cb1d4a8f76cbfc898e8147c Message-Id: <20200822224423.8230D3861004@sourceware.org> Date: Sat, 22 Aug 2020 22:44:23 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Aug 2020 22:44:23 -0000 https://gcc.gnu.org/g:ef7303162744a4b02cb1d4a8f76cbfc898e8147c commit ef7303162744a4b02cb1d4a8f76cbfc898e8147c Author: Martin Liska Date: Wed Jun 17 10:53:44 2020 +0200 gcov*: collapse lisence header to 2 lines in --version. gcc/ChangeLog: * gcov-dump.c (print_version): Collapse lisence header to 2 lines in --version. * gcov-tool.c (print_version): Likewise. * gcov.c (print_version): Likewise. Diff: --- gcc/gcov-dump.c | 5 ++--- gcc/gcov-tool.c | 5 ++--- gcc/gcov.c | 5 ++--- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/gcc/gcov-dump.c b/gcc/gcov-dump.c index ffb71ca4b68..cfa771e4a25 100644 --- a/gcc/gcov-dump.c +++ b/gcc/gcov-dump.c @@ -144,9 +144,8 @@ print_version (void) { printf ("gcov-dump %s%s\n", pkgversion_string, version_string); printf ("Copyright (C) 2020 Free Software Foundation, Inc.\n"); - printf ("This is free software; see the source for copying conditions.\n" - "There is NO warranty; not even for MERCHANTABILITY or \n" - "FITNESS FOR A PARTICULAR PURPOSE.\n\n"); + printf ("This is free software; see the source for copying conditions. There is NO\n\ +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"); } static void diff --git a/gcc/gcov-tool.c b/gcc/gcov-tool.c index f8f1cb5d29b..fca0178b4d5 100644 --- a/gcc/gcov-tool.c +++ b/gcc/gcov-tool.c @@ -528,9 +528,8 @@ print_version (void) fnotice (stdout, "Copyright %s 2020 Free Software Foundation, Inc.\n", _("(C)")); fnotice (stdout, - _("This is free software; see the source for copying conditions.\n" - "There is NO warranty; not even for MERCHANTABILITY or \n" - "FITNESS FOR A PARTICULAR PURPOSE.\n\n")); + _("This is free software; see the source for copying conditions. There is NO\n\ +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n")); exit (SUCCESS_EXIT_CODE); } diff --git a/gcc/gcov.c b/gcc/gcov.c index 488847231c2..ef93758b26f 100644 --- a/gcc/gcov.c +++ b/gcc/gcov.c @@ -929,9 +929,8 @@ print_version (void) fprintf (stdout, "Copyright %s 2020 Free Software Foundation, Inc.\n", _("(C)")); fnotice (stdout, - _("This is free software; see the source for copying conditions.\n" - "There is NO warranty; not even for MERCHANTABILITY or \n" - "FITNESS FOR A PARTICULAR PURPOSE.\n\n")); + _("This is free software; see the source for copying conditions. There is NO\n\ +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n")); exit (SUCCESS_EXIT_CODE); }