(elf32_arm_size_dynamic_sections): Fix a typo and touchup logic like i386/ppc.

This commit is contained in:
Nick Clifton 2005-07-05 09:14:14 +00:00
parent 3012383869
commit 8532796c0c
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2005-07-05 Peter S. Mazinger <ps.m@gmx.net>
* elf32-arm.c (elf32_arm_size_dynamic_sections): Fix a typo and
touchup logic like i386/ppc.
2005-07-05 Alan Modra <amodra@bigpond.net.au>
* elf.c (special_sections): Move const qualifier.

View File

@ -5932,7 +5932,7 @@ elf32_arm_size_dynamic_sections (bfd * output_bfd ATTRIBUTE_UNUSED,
#define add_dynamic_entry(TAG, VAL) \
_bfd_elf_add_dynamic_entry (info, TAG, VAL)
if (!info->shared)
if (info->executable)
{
if (!add_dynamic_entry (DT_DEBUG, 0))
return FALSE;
@ -5965,10 +5965,9 @@ elf32_arm_size_dynamic_sections (bfd * output_bfd ATTRIBUTE_UNUSED,
{
if (!add_dynamic_entry (DT_TEXTREL, 0))
return FALSE;
info->flags |= DF_TEXTREL;
}
}
#undef add_synamic_entry
#undef add_dynamic_entry
return TRUE;
}