aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Liska <mliska@suse.cz>2020-06-17 10:53:44 +0200
committerMartin Liska <mliska@suse.cz>2020-06-17 10:58:04 +0200
commit8ad4fc26dcb04d57754480e491334a8af0c79897 (patch)
tree323c7979bbc16a8ed8e3d0d677231dcdcb8dd94c
parent48b6386f5d0bdcbe5c901678a043516d544a9f7f (diff)
downloadgcc-8ad4fc26dcb04d57754480e491334a8af0c79897.zip
gcc-8ad4fc26dcb04d57754480e491334a8af0c79897.tar.gz
gcc-8ad4fc26dcb04d57754480e491334a8af0c79897.tar.bz2
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.
-rw-r--r--gcc/gcov-dump.c5
-rw-r--r--gcc/gcov-tool.c5
-rw-r--r--gcc/gcov.c5
3 files changed, 6 insertions, 9 deletions
diff --git a/gcc/gcov-dump.c b/gcc/gcov-dump.c
index ffb71ca..cfa771e4 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 f8f1cb5..fca0178 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 4888472..ef93758 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);
}