From c20f4f8c21dcede76fe50dc3e19f5e8056232b94 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Mon, 3 Apr 2000 14:10:05 +0000 Subject: Move bug report string to one place. --- gas/ChangeLog | 9 +++++++++ gas/as.c | 3 ++- gas/as.h | 1 + gas/config/tc-sparc.c | 2 +- gas/gasp.c | 3 ++- 5 files changed, 15 insertions(+), 3 deletions(-) (limited to 'gas') diff --git a/gas/ChangeLog b/gas/ChangeLog index b4194fd..51bbbba 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,12 @@ +2000-04-03 Alan Modra + + * as.h: #include "bin-bugs.h" + * as.c (show_usage): Use REPORT_BUGS_TO. + * gasp.c: #include "bin-bugs.h" + (show_usage): Use REPORT_BUGS_TO. + + * config/tc-sparc.c (md_show_usage): Add a trailing newline. + Mon Apr 3 13:56:03 2000 Hans-Peter Nilsson * write.c (write_object_file) [! WORKING_DOT_WORD]: If defined, diff --git a/gas/as.c b/gas/as.c index 647f4be..12aa2fc 100644 --- a/gas/as.c +++ b/gas/as.c @@ -322,7 +322,8 @@ Options:\n\ md_show_usage (stream); - fprintf (stream, _("\nReport bugs to bug-gnu-utils@gnu.org\n")); + fputc ('\n', stream); + fprintf (stream, REPORT_BUGS_TO); } /* diff --git a/gas/as.h b/gas/as.h index 4c4658a..2106b33 100644 --- a/gas/as.h +++ b/gas/as.h @@ -38,6 +38,7 @@ */ #include "config.h" +#include "bin-bugs.h" /* This is the code recommended in the autoconf documentation, almost verbatim. If it doesn't work for you, let me know, and notify diff --git a/gas/config/tc-sparc.c b/gas/config/tc-sparc.c index f7049d6..1e72300 100644 --- a/gas/config/tc-sparc.c +++ b/gas/config/tc-sparc.c @@ -638,7 +638,7 @@ md_show_usage (stream) -EL generate code for a little endian machine\n\ -EB generate code for a big endian machine\n\ --little-endian-data generate code for a machine having big endian\n\ - instructions and little endian data.")); + instructions and little endian data.\n")); #endif } diff --git a/gas/gasp.c b/gas/gasp.c index b35a4ae..dcceccf 100644 --- a/gas/gasp.c +++ b/gas/gasp.c @@ -50,6 +50,7 @@ suitable for gas to consume. */ #include "config.h" +#include "bin-bugs.h" #include #include @@ -3550,7 +3551,7 @@ Usage: %s \n\ [-Ipath] add to include path list\n\ [in-file]\n")); if (status == 0) - printf (_("\nReport bugs to bug-gnu-utils@gnu.org\n")); + printf (REPORT_BUGS_TO); exit (status); } -- cgit v1.1