Move bug report string to one place.
This commit is contained in:
parent
7876dd4328
commit
c20f4f8c21
@ -1,3 +1,21 @@
|
|||||||
|
2000-04-03 Alan Modra <alan@linuxcare.com.au>
|
||||||
|
|
||||||
|
* bucomm.h: #include "bin-bugs.h"
|
||||||
|
* addr2line.c (usage): Use REPORT_BUGS_TO.
|
||||||
|
* ar.c (usage): Likewise.
|
||||||
|
* nlmconv.c (show_usage): Likewise.
|
||||||
|
* nm.c (usage): Likewise.
|
||||||
|
(OPTION_TARGET): Define.
|
||||||
|
(long_options): Use OPTION_TARGET rather than 200.
|
||||||
|
(main): Likewise.
|
||||||
|
|
||||||
|
* objcopy.c (copy_usage): Likewise.
|
||||||
|
(strip_usage): Likewise.
|
||||||
|
* objdump.c (usage): Likewise.
|
||||||
|
* readelf.c (usage): Likewise.
|
||||||
|
* strings.c (usage): Likewise.
|
||||||
|
* windres.c (usage): Likewise.
|
||||||
|
|
||||||
2000-03-31 John David Anglin <dave@hiauly1.hia.nrc.ca>
|
2000-03-31 John David Anglin <dave@hiauly1.hia.nrc.ca>
|
||||||
|
|
||||||
* readelf.c: Include sys/types.h before sys/stat.h for ultrix.
|
* readelf.c: Include sys/types.h before sys/stat.h for ultrix.
|
||||||
@ -7,7 +25,7 @@
|
|||||||
* rddbg.c (read_section_stabs_debugging_info): Catch out of range
|
* rddbg.c (read_section_stabs_debugging_info): Catch out of range
|
||||||
string offsets in corrupt stabs entries.
|
string offsets in corrupt stabs entries.
|
||||||
|
|
||||||
2000-03-27 Alan Modra <alan@linuxcare.com>
|
2000-03-27 Alan Modra <alan@linuxcare.com.au>
|
||||||
|
|
||||||
* readelf.c: Include elf/avr.h
|
* readelf.c: Include elf/avr.h
|
||||||
(dump_relocations): Add EM_AVR case.
|
(dump_relocations): Add EM_AVR case.
|
||||||
|
@ -80,7 +80,7 @@ Usage: %s [-CfsHV] [-b bfdname] [--target=bfdname]\n\
|
|||||||
program_name);
|
program_name);
|
||||||
list_supported_targets (program_name, stream);
|
list_supported_targets (program_name, stream);
|
||||||
if (status == 0)
|
if (status == 0)
|
||||||
fprintf (stream, _("Report bugs to bug-gnu-utils@gnu.org\n"));
|
fprintf (stream, REPORT_BUGS_TO);
|
||||||
exit (status);
|
exit (status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -283,7 +283,7 @@ usage (help)
|
|||||||
list_supported_targets (program_name, stderr);
|
list_supported_targets (program_name, stderr);
|
||||||
|
|
||||||
if (help)
|
if (help)
|
||||||
fprintf (s, _("Report bugs to bug-gnu-utils@gnu.org\n"));
|
fprintf (s, REPORT_BUGS_TO);
|
||||||
|
|
||||||
xexit (help ? 0 : 1);
|
xexit (help ? 0 : 1);
|
||||||
}
|
}
|
||||||
|
@ -26,6 +26,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
#include "bin-bugs.h"
|
||||||
|
|
||||||
#ifdef USE_BINARY_FOPEN
|
#ifdef USE_BINARY_FOPEN
|
||||||
#include "fopen-bin.h"
|
#include "fopen-bin.h"
|
||||||
|
@ -1138,7 +1138,7 @@ Usage: %s [-dhV] [-I bfdname] [-O bfdname] [-T header-file] [-l linker]\n\
|
|||||||
[in-file [out-file]]\n"),
|
[in-file [out-file]]\n"),
|
||||||
program_name);
|
program_name);
|
||||||
if (status == 0)
|
if (status == 0)
|
||||||
fprintf (file, _("Report bugs to bug-gnu-utils@gnu.org\n"));
|
fprintf (file, REPORT_BUGS_TO);
|
||||||
exit (status);
|
exit (status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -255,6 +255,8 @@ static char *target = NULL;
|
|||||||
static bfd *lineno_cache_bfd;
|
static bfd *lineno_cache_bfd;
|
||||||
static bfd *lineno_cache_rel_bfd;
|
static bfd *lineno_cache_rel_bfd;
|
||||||
|
|
||||||
|
#define OPTION_TARGET 200
|
||||||
|
|
||||||
static struct option long_options[] =
|
static struct option long_options[] =
|
||||||
{
|
{
|
||||||
{"debug-syms", no_argument, &print_debug_syms, 1},
|
{"debug-syms", no_argument, &print_debug_syms, 1},
|
||||||
@ -275,7 +277,7 @@ static struct option long_options[] =
|
|||||||
{"reverse-sort", no_argument, &reverse_sort, 1},
|
{"reverse-sort", no_argument, &reverse_sort, 1},
|
||||||
{"size-sort", no_argument, &sort_by_size, 1},
|
{"size-sort", no_argument, &sort_by_size, 1},
|
||||||
{"stats", no_argument, &show_stats, 1},
|
{"stats", no_argument, &show_stats, 1},
|
||||||
{"target", required_argument, 0, 200},
|
{"target", required_argument, 0, OPTION_TARGET},
|
||||||
{"defined-only", no_argument, &defined_only, 1},
|
{"defined-only", no_argument, &defined_only, 1},
|
||||||
{"undefined-only", no_argument, &undefined_only, 1},
|
{"undefined-only", no_argument, &undefined_only, 1},
|
||||||
{"version", no_argument, &show_version, 1},
|
{"version", no_argument, &show_version, 1},
|
||||||
@ -301,7 +303,7 @@ Usage: %s [-aABCDglnopPrsuvV] [-t radix] [--radix=radix] [--target=bfdname]\n\
|
|||||||
program_name);
|
program_name);
|
||||||
list_supported_targets (program_name, stream);
|
list_supported_targets (program_name, stream);
|
||||||
if (status == 0)
|
if (status == 0)
|
||||||
fprintf (stream, _("Report bugs to bug-gnu-utils@gnu.org\n"));
|
fprintf (stream, REPORT_BUGS_TO);
|
||||||
exit (status);
|
exit (status);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -448,7 +450,7 @@ main (argc, argv)
|
|||||||
show_version = 1;
|
show_version = 1;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 200: /* --target */
|
case OPTION_TARGET: /* --target */
|
||||||
target = optarg;
|
target = optarg;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -341,7 +341,7 @@ copy_usage (stream, exit_status)
|
|||||||
"));
|
"));
|
||||||
list_supported_targets (program_name, stream);
|
list_supported_targets (program_name, stream);
|
||||||
if (exit_status == 0)
|
if (exit_status == 0)
|
||||||
fprintf (stream, _("Report bugs to bug-gnu-utils@gnu.org\n"));
|
fprintf (stream, REPORT_BUGS_TO);
|
||||||
exit (exit_status);
|
exit (exit_status);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -373,7 +373,7 @@ strip_usage (stream, exit_status)
|
|||||||
|
|
||||||
list_supported_targets (program_name, stream);
|
list_supported_targets (program_name, stream);
|
||||||
if (exit_status == 0)
|
if (exit_status == 0)
|
||||||
fprintf (stream, _("Report bugs to bug-gnu-utils@gnu.org\n"));
|
fprintf (stream, REPORT_BUGS_TO);
|
||||||
exit (exit_status);
|
exit (exit_status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -274,7 +274,7 @@ usage (stream, status)
|
|||||||
disassembler_usage (stream);
|
disassembler_usage (stream);
|
||||||
}
|
}
|
||||||
if (status == 0)
|
if (status == 0)
|
||||||
fprintf (stream, _("Report bugs to bug-gnu-utils@gnu.org\n"));
|
fprintf (stream, REPORT_BUGS_TO);
|
||||||
exit (status);
|
exit (status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1700,7 +1700,7 @@ usage ()
|
|||||||
fprintf (stdout, _(" -I or --histogram Display histogram of bucket list lengths\n"));
|
fprintf (stdout, _(" -I or --histogram Display histogram of bucket list lengths\n"));
|
||||||
fprintf (stdout, _(" -v or --version Display the version number of readelf\n"));
|
fprintf (stdout, _(" -v or --version Display the version number of readelf\n"));
|
||||||
fprintf (stdout, _(" -H or --help Display this information\n"));
|
fprintf (stdout, _(" -H or --help Display this information\n"));
|
||||||
fprintf (stdout, _("Report bugs to bug-gnu-utils@gnu.org\n"));
|
fprintf (stdout, REPORT_BUGS_TO);
|
||||||
|
|
||||||
exit (0);
|
exit (0);
|
||||||
}
|
}
|
||||||
|
@ -509,6 +509,6 @@ Usage: %s [-afov] [-n min-len] [-min-len] [-t {o,x,d}] [-]\n\
|
|||||||
program_name);
|
program_name);
|
||||||
list_supported_targets (program_name, stream);
|
list_supported_targets (program_name, stream);
|
||||||
if (status == 0)
|
if (status == 0)
|
||||||
fprintf (stream, _("Report bugs to bug-gnu-utils@gnu.org\n"));
|
fprintf (stream, REPORT_BUGS_TO);
|
||||||
exit (status);
|
exit (status);
|
||||||
}
|
}
|
||||||
|
@ -734,7 +734,7 @@ extension if not specified. A single file name is an input file.\n\
|
|||||||
No input-file is stdin, default rc. No output-file is stdout, default rc.\n"));
|
No input-file is stdin, default rc. No output-file is stdout, default rc.\n"));
|
||||||
list_supported_targets (program_name, stream);
|
list_supported_targets (program_name, stream);
|
||||||
if (status == 0)
|
if (status == 0)
|
||||||
fprintf (stream, _("Report bugs to bug-gnu-utils@gnu.org\n"));
|
fprintf (stream, REPORT_BUGS_TO);
|
||||||
exit (status);
|
exit (status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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>
|
Mon Apr 3 13:56:03 2000 Hans-Peter Nilsson <hp@axis.com>
|
||||||
|
|
||||||
* write.c (write_object_file) [! WORKING_DOT_WORD]: If defined,
|
* write.c (write_object_file) [! WORKING_DOT_WORD]: If defined,
|
||||||
|
3
gas/as.c
3
gas/as.c
@ -322,7 +322,8 @@ Options:\n\
|
|||||||
|
|
||||||
md_show_usage (stream);
|
md_show_usage (stream);
|
||||||
|
|
||||||
fprintf (stream, _("\nReport bugs to bug-gnu-utils@gnu.org\n"));
|
fputc ('\n', stream);
|
||||||
|
fprintf (stream, REPORT_BUGS_TO);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
1
gas/as.h
1
gas/as.h
@ -38,6 +38,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
#include "bin-bugs.h"
|
||||||
|
|
||||||
/* This is the code recommended in the autoconf documentation, almost
|
/* This is the code recommended in the autoconf documentation, almost
|
||||||
verbatim. If it doesn't work for you, let me know, and notify
|
verbatim. If it doesn't work for you, let me know, and notify
|
||||||
|
@ -638,7 +638,7 @@ md_show_usage (stream)
|
|||||||
-EL generate code for a little endian machine\n\
|
-EL generate code for a little endian machine\n\
|
||||||
-EB generate code for a big endian machine\n\
|
-EB generate code for a big endian machine\n\
|
||||||
--little-endian-data generate code for a machine having big endian\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
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -50,6 +50,7 @@ suitable for gas to consume.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
#include "bin-bugs.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
@ -3550,7 +3551,7 @@ Usage: %s \n\
|
|||||||
[-Ipath] add to include path list\n\
|
[-Ipath] add to include path list\n\
|
||||||
[in-file]\n"));
|
[in-file]\n"));
|
||||||
if (status == 0)
|
if (status == 0)
|
||||||
printf (_("\nReport bugs to bug-gnu-utils@gnu.org\n"));
|
printf (REPORT_BUGS_TO);
|
||||||
exit (status);
|
exit (status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,7 +1,12 @@
|
|||||||
|
2000-04-01 Alan Modra <alan@linuxcare.com.au>
|
||||||
|
|
||||||
|
* gprof.h: #include "bin-bugs.h".
|
||||||
|
* gprof.c (usage): Use REPORT_BUGS_TO.
|
||||||
|
|
||||||
2000-03-31 Alan Modra <alan@linuxcare.com.au>
|
2000-03-31 Alan Modra <alan@linuxcare.com.au>
|
||||||
|
|
||||||
* symtab.c (symtab_finalize): Don't use post-increment on
|
* symtab.c (symtab_finalize): Don't use post-increment on
|
||||||
structure copy to work around a ppc gcc bug.
|
structure copy, to work around a ppc gcc bug.
|
||||||
|
|
||||||
1999-09-29 Mark Kettenis <kettenis@gnu.org>
|
1999-09-29 Mark Kettenis <kettenis@gnu.org>
|
||||||
|
|
||||||
|
@ -157,7 +157,7 @@ Usage: %s [-[abcDhilLsTvwxyz]] [-[ACeEfFJnNOpPqQZ][name]] [-I dirs]\n\
|
|||||||
[image-file] [profile-file...]\n"),
|
[image-file] [profile-file...]\n"),
|
||||||
whoami);
|
whoami);
|
||||||
if (status == 0)
|
if (status == 0)
|
||||||
fprintf (stream, _("Report bugs to bug-gnu-utils@gnu.org\n"));
|
fprintf (stream, REPORT_BUGS_TO);
|
||||||
done (status);
|
done (status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -76,6 +76,7 @@
|
|||||||
# define N_(String) (String)
|
# define N_(String) (String)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "bin-bugs.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* These may already be defined on some systems. We could probably
|
* These may already be defined on some systems. We could probably
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2000-04-03 Alan Modra <alan@linuxcare.com.au>
|
||||||
|
|
||||||
|
* bin-bugs.h: New file.
|
||||||
|
|
||||||
2000-03-27 Denis Chertykov <denisc@overta.ru>
|
2000-03-27 Denis Chertykov <denisc@overta.ru>
|
||||||
|
|
||||||
* dis-asm.h (print_insn_avr): Declare.
|
* dis-asm.h (print_insn_avr): Declare.
|
||||||
|
3
include/bin-bugs.h
Normal file
3
include/bin-bugs.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#ifndef REPORT_BUGS_TO
|
||||||
|
#define REPORT_BUGS_TO _("Report bugs to %s\n"), "bug-gnu-utils@gnu.org"
|
||||||
|
#endif
|
@ -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>
|
2000-03-27 Denis Chertykov <denisc@overta.ru>
|
||||||
|
|
||||||
* configure.tgt (avr-*-*): New target support.
|
* configure.tgt (avr-*-*): New target support.
|
||||||
|
2
ld/ld.h
2
ld/ld.h
@ -45,6 +45,8 @@
|
|||||||
# define N_(String) (String)
|
# define N_(String) (String)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "bin-bugs.h"
|
||||||
|
|
||||||
/* Look in this environment name for the linker to pretend to be */
|
/* Look in this environment name for the linker to pretend to be */
|
||||||
#define EMULATION_ENVIRON "LDEMULATION"
|
#define EMULATION_ENVIRON "LDEMULATION"
|
||||||
/* If in there look for the strings: */
|
/* If in there look for the strings: */
|
||||||
|
@ -1163,5 +1163,5 @@ help ()
|
|||||||
ldemul_list_emulation_options (stdout);
|
ldemul_list_emulation_options (stdout);
|
||||||
printf ("\n");
|
printf ("\n");
|
||||||
|
|
||||||
printf (_("\nReport bugs to bug-gnu-utils@gnu.org\n"));
|
printf (REPORT_BUGS_TO);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user