aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2000-04-03 14:10:05 +0000
committerAlan Modra <amodra@gmail.com>2000-04-03 14:10:05 +0000
commitc20f4f8c21dcede76fe50dc3e19f5e8056232b94 (patch)
treecd6ff2baedb42d32c8f18a52f26431f88c8e9ed0 /gas
parent7876dd4328a3270de573c089669cbf8b008304fd (diff)
downloadgdb-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/ChangeLog9
-rw-r--r--gas/as.c3
-rw-r--r--gas/as.h1
-rw-r--r--gas/config/tc-sparc.c2
-rw-r--r--gas/gasp.c3
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,
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 <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);
}