]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
gcov*: collapse lisence header to 2 lines in --version.
authorMartin Liska <mliska@suse.cz>
Wed, 17 Jun 2020 08:53:44 +0000 (10:53 +0200)
committerMartin Liska <mliska@suse.cz>
Wed, 17 Jun 2020 08:58:04 +0000 (10:58 +0200)
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.

gcc/gcov-dump.c
gcc/gcov-tool.c
gcc/gcov.c

index ffb71ca4b684001caaa43e63648a574abd74ffd3..cfa771e4a25f03239d13766686eda9385d7f694f 100644 (file)
@@ -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
index f8f1cb5d29bb8745a29c72a9f5f4c26321c60000..fca0178b4d58a0c85de078b15d1d17b5176285cf 100644 (file)
@@ -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);
 }
 
index 488847231c242b29cbec2c65fd62e8c843ae83ad..ef93758b26fd80e75627b3da6131d7ec63fff42e 100644 (file)
@@ -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);
 }