This is the mail archive of the
binutils@sourceware.cygnus.com
mailing list for the binutils project.
Re: Binutils bug-reporting
- To: alan at linuxcare dot com dot au (Alan Modra)
- Subject: Re: Binutils bug-reporting
- From: "Philippe De Muyter" <phdm at macqel dot be>
- Date: Sun, 2 Apr 2000 05:34:36 +0200 (CEST)
- Cc: binutils at sourceware dot cygnus dot com
Alan Modra wrote :
> --- /dev/null Tue May 5 13:32:27 1998
> +++ bin-bugs.h Fri Mar 31 19:35:45 2000
> @@ -0,0 +1,3 @@
> +#ifndef REPORT_BUGS_TO
> +#define REPORT_BUGS_TO "Report bugs to bug-gnu-utils@gnu.org\n"
> +#endif
[...]
> --- addr2line.c 1999/07/11 20:02:14 1.2
> +++ addr2line.c 2000/04/01 02:53:26
> @@ -80,7 +80,7 @@ Usage: %s [-CfsHV] [-b bfdname] [--targe
> program_name);
> list_supported_targets (program_name, stream);
> if (status == 0)
> - fprintf (stream, _("Report bugs to bug-gnu-utils@gnu.org\n"));
> + fprintf (stream, _(REPORT_BUGS_TO));
> exit (status);
> }
For the sake of internationalization, would it not be better to split that
into `Report bugs to %s' and the address part ?
Philippe