diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2000-09-12 14:48:46 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2000-09-12 14:48:46 +0000 |
commit | 62531eff7138b73da2a6d2b382959964d67d4269 (patch) | |
tree | 176edf1a30027217d6fcff6f9f1c049d990d75cf /gnu/usr.bin/binutils/bfd/sparclinux.c | |
parent | 9ba342053c015a9be4f7f1ad1efdf21220329946 (diff) |
Import binutils-2.10
- only the binutils package (no gdb here)
- don't import libiberty and texinfo, they are elsewhere
- remove all .info* generated files
Diffstat (limited to 'gnu/usr.bin/binutils/bfd/sparclinux.c')
-rw-r--r-- | gnu/usr.bin/binutils/bfd/sparclinux.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/gnu/usr.bin/binutils/bfd/sparclinux.c b/gnu/usr.bin/binutils/bfd/sparclinux.c index 3e051a2daf8..73a29b39b26 100644 --- a/gnu/usr.bin/binutils/bfd/sparclinux.c +++ b/gnu/usr.bin/binutils/bfd/sparclinux.c @@ -1,5 +1,6 @@ /* BFD back-end for linux flavored sparc a.out binaries. - Copyright (C) 1992, 93, 94, 95, 96, 1997 Free Software Foundation, Inc. + Copyright (C) 1992, 93, 94, 95, 96, 97, 98, 1999 + Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. @@ -299,7 +300,7 @@ new_fixup (info, h, value, builtin) static boolean linux_link_create_dynamic_sections (abfd, info) bfd *abfd; - struct bfd_link_info *info; + struct bfd_link_info *info ATTRIBUTE_UNUSED; { flagword flags; register asection *s; @@ -448,7 +449,7 @@ linux_tally_symbols (h, data) alloc = (char *) bfd_malloc (strlen (name) + 1); if (p == NULL || alloc == NULL) - (*_bfd_error_handler) ("Output file requires shared library `%s'\n", + (*_bfd_error_handler) (_("Output file requires shared library `%s'\n"), name); else { @@ -456,7 +457,7 @@ linux_tally_symbols (h, data) p = strrchr (alloc, '_'); *p++ = '\0'; (*_bfd_error_handler) - ("Output file requires shared library `%s.so.%s'\n", + (_("Output file requires shared library `%s.so.%s'\n"), alloc, p); free (alloc); } @@ -645,7 +646,7 @@ linux_finish_dynamic_link (output_bfd, info) && f->h->root.root.type != bfd_link_hash_defweak) { (*_bfd_error_handler) - ("Symbol %s not defined for fixups\n", + (_("Symbol %s not defined for fixups\n"), f->h->root.root.root.string); continue; } @@ -695,7 +696,7 @@ linux_finish_dynamic_link (output_bfd, info) && f->h->root.root.type != bfd_link_hash_defweak) { (*_bfd_error_handler) - ("Symbol %s not defined for fixups\n", + (_("Symbol %s not defined for fixups\n"), f->h->root.root.root.string); continue; } @@ -719,7 +720,7 @@ linux_finish_dynamic_link (output_bfd, info) if (linux_hash_table (info)->fixup_count != fixups_written) { - (*_bfd_error_handler) ("Warning: fixup count mismatch\n"); + (*_bfd_error_handler) (_("Warning: fixup count mismatch\n")); while (linux_hash_table (info)->fixup_count > fixups_written) { bfd_put_32 (output_bfd, 0, fixup_table); |