diff options
author | Alan Modra <amodra@gmail.com> | 2000-04-03 14:10:05 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-04-03 14:10:05 +0000 |
commit | c20f4f8c21dcede76fe50dc3e19f5e8056232b94 (patch) | |
tree | cd6ff2baedb42d32c8f18a52f26431f88c8e9ed0 /gas | |
parent | 7876dd4328a3270de573c089669cbf8b008304fd (diff) | |
download | gdb-c20f4f8c21dcede76fe50dc3e19f5e8056232b94.zip gdb-c20f4f8c21dcede76fe50dc3e19f5e8056232b94.tar.gz gdb-c20f4f8c21dcede76fe50dc3e19f5e8056232b94.tar.bz2 |
Move bug report string to one place.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 9 | ||||
-rw-r--r-- | gas/as.c | 3 | ||||
-rw-r--r-- | gas/as.h | 1 | ||||
-rw-r--r-- | gas/config/tc-sparc.c | 2 | ||||
-rw-r--r-- | gas/gasp.c | 3 |
5 files changed, 15 insertions, 3 deletions
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 <alan@linuxcare.com.au> + + * 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 <hp@axis.com> * write.c (write_object_file) [! WORKING_DOT_WORD]: If defined, @@ -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); } /* @@ -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 } @@ -50,6 +50,7 @@ suitable for gas to consume. */ #include "config.h" +#include "bin-bugs.h" #include <stdio.h> #include <string.h> @@ -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); } |