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 /ld | |
parent | 7876dd4328a3270de573c089669cbf8b008304fd (diff) | |
download | fsf-binutils-gdb-c20f4f8c21dcede76fe50dc3e19f5e8056232b94.zip fsf-binutils-gdb-c20f4f8c21dcede76fe50dc3e19f5e8056232b94.tar.gz fsf-binutils-gdb-c20f4f8c21dcede76fe50dc3e19f5e8056232b94.tar.bz2 |
Move bug report string to one place.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/ld.h | 2 | ||||
-rw-r--r-- | ld/lexsup.c | 4 |
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. @@ -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); } |