From: H.J. Lu Date: Thu, 17 May 2001 19:08:46 +0000 (+0000) Subject: 2001-05-17 H.J. Lu X-Git-Tag: dberlin-typesystem-branchpoint~507 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f3876d8bc6b619b3fc066d2c80a78502cb074cf3;p=external%2Fbinutils.git 2001-05-17 H.J. Lu * elflink.h (elf_link_add_object_symbols): Set DT_NEEDED to basename of the bfd filename. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 85a6b13..575003d 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2001-05-17 H.J. Lu + + * elflink.h (elf_link_add_object_symbols): Set DT_NEEDED to + basename of the bfd filename. + 2001-05-16 Alan Modra * section.c (asection): Add linker_has_input field. diff --git a/bfd/elflink.h b/bfd/elflink.h index af7dac2..329c522 100644 --- a/bfd/elflink.h +++ b/bfd/elflink.h @@ -1095,7 +1095,7 @@ elf_link_add_object_symbols (abfd, info) elf_dt_name, we don't make a DT_NEEDED entry at all, even if there is a DT_SONAME entry. */ add_needed = true; - name = bfd_get_filename (abfd); + name = basename (bfd_get_filename (abfd)); if (elf_dt_name (abfd) != NULL) { name = elf_dt_name (abfd);