From cc36acdfd5cabcf82bfdfd4951fa8a9480601848 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Wed, 19 Jun 2002 10:07:37 +0000 Subject: [PATCH] If the target does not support an ELF style has table, return true, indicating that nothing needed to be done, rather than false, indicating that the section's size could not be computed. --- bfd/ChangeLog | 7 +++++++ bfd/elflink.h | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index c2b4e54cab1..b4af06c79ff 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,10 @@ +2002-06-19 Nick Clifton + + * elflink.h (size_dynamic_sections): If the target does not + support an ELF style has table, return true, indicating that + nothing needed to be done, rather than false, indicating that the + section's size could not be computed. + 2002-06-18 Dave Brolley From Catherine Moore, Michael Meissner, Dave Brolley: diff --git a/bfd/elflink.h b/bfd/elflink.h index 9ba13fd0a28..b442361b611 100644 --- a/bfd/elflink.h +++ b/bfd/elflink.h @@ -3053,7 +3053,7 @@ NAME(bfd_elf,size_dynamic_sections) (output_bfd, soname, rpath, return true; if (! is_elf_hash_table (info)) - return false; + return true; /* Any syms created from now on start with -1 in got.refcount/offset and plt.refcount/offset. */ -- 2.30.2