aboutsummaryrefslogtreecommitdiff
path: root/ld
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 /ld
parent7876dd4328a3270de573c089669cbf8b008304fd (diff)
downloadbinutils-c20f4f8c21dcede76fe50dc3e19f5e8056232b94.zip
binutils-c20f4f8c21dcede76fe50dc3e19f5e8056232b94.tar.gz
binutils-c20f4f8c21dcede76fe50dc3e19f5e8056232b94.tar.bz2
Move bug report string to one place.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog5
-rw-r--r--ld/ld.h2
-rw-r--r--ld/lexsup.c4
3 files changed, 9 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index b1e37f6..729a3e9 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,8 @@
+2000-04-03 Alan Modra <alan@linuxcare.com.au>
+
+ * ld.h: #include "bin-bugs.h"
+ * lexsup.c (help): Use REPORT_BUGS_TO.
+
2000-03-27 Denis Chertykov <denisc@overta.ru>
* configure.tgt (avr-*-*): New target support.
diff --git a/ld/ld.h b/ld/ld.h
index 3c53b98..2c7e55d 100644
--- a/ld/ld.h
+++ b/ld/ld.h
@@ -45,6 +45,8 @@
# define N_(String) (String)
#endif
+#include "bin-bugs.h"
+
/* Look in this environment name for the linker to pretend to be */
#define EMULATION_ENVIRON "LDEMULATION"
/* If in there look for the strings: */
diff --git a/ld/lexsup.c b/ld/lexsup.c
index 06a65e1..64c9be1 100644
--- a/ld/lexsup.c
+++ b/ld/lexsup.c
@@ -1162,6 +1162,6 @@ help ()
printf (_("%s: emulation specific options:\n"), program_name);
ldemul_list_emulation_options (stdout);
printf ("\n");
-
- printf (_("\nReport bugs to bug-gnu-utils@gnu.org\n"));
+
+ printf (REPORT_BUGS_TO);
}