From: Mark Kettenis Date: Sat, 14 May 2005 13:49:42 +0000 (+0000) Subject: * elflink.c (bfd_elf_size_dynamic_sections): Use lbasename instead X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=060848126d7a6e1b103d80a1a52162449d970560;p=binutils-gdb.git * elflink.c (bfd_elf_size_dynamic_sections): Use lbasename instead of basename. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index e53946efe8f..66178328421 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2005-05-14 Mark Kettenis + + * elflink.c (bfd_elf_size_dynamic_sections): Use lbasename instead + of basename. + 2005-05-14 Alan Modra * elf32-ppc.c (ppc_elf_size_dynamic_sections): Set DT_PPC_GOT, diff --git a/bfd/elflink.c b/bfd/elflink.c index 5c5fb2def8f..793918bfc2c 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -5377,7 +5377,7 @@ bfd_elf_size_dynamic_sections (bfd *output_bfd, { bfd_size_type indx; - name = basename (output_bfd->filename); + name = lbasename (output_bfd->filename); def.vd_hash = bfd_elf_hash (name); indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, name, FALSE); @@ -5600,7 +5600,7 @@ bfd_elf_size_dynamic_sections (bfd *output_bfd, indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, elf_dt_name (t->vn_bfd) != NULL ? elf_dt_name (t->vn_bfd) - : basename (t->vn_bfd->filename), + : lbasename (t->vn_bfd->filename), FALSE); if (indx == (bfd_size_type) -1) return FALSE;