summaryrefslogtreecommitdiff
path: root/bfd/elf32-xtensa.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2003-11-11 13:32:38 +0000
committerNick Clifton <nickc@redhat.com>2003-11-11 13:32:38 +0000
commit6dfbf7d884358b77e746061cc3d3005fac320af8 (patch)
tree18c410aae4f891fa532c279ebb6c8f56562d4e94 /bfd/elf32-xtensa.c
parent758784b8f5784d3d65f8984657e0e68462ddccae (diff)
downloadgdb-6dfbf7d884358b77e746061cc3d3005fac320af8.tar.gz
Fix decision about when a .interp section should exist
Diffstat (limited to 'bfd/elf32-xtensa.c')
-rw-r--r--bfd/elf32-xtensa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf32-xtensa.c b/bfd/elf32-xtensa.c
index 31adf3baffe..e8c276b1941 100644
--- a/bfd/elf32-xtensa.c
+++ b/bfd/elf32-xtensa.c
@@ -1176,7 +1176,7 @@ elf_xtensa_size_dynamic_sections (output_bfd, info)
if (elf_hash_table (info)->dynamic_sections_created)
{
/* Set the contents of the .interp section to the interpreter. */
- if (! info->shared)
+ if (info->executable)
{
s = bfd_get_section_by_name (dynobj, ".interp");
if (s == NULL)