From f3876d8bc6b619b3fc066d2c80a78502cb074cf3 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Thu, 17 May 2001 19:08:46 +0000 Subject: [PATCH] 2001-05-17 H.J. Lu * elflink.h (elf_link_add_object_symbols): Set DT_NEEDED to basename of the bfd filename. --- bfd/ChangeLog | 5 +++++ bfd/elflink.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 85a6b1380dd..575003d1f14 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 af7dac2737f..329c5224674 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); -- 2.30.2