diff options
author | Nick Clifton <nickc@redhat.com> | 2003-11-11 13:32:38 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2003-11-11 13:32:38 +0000 |
commit | 6dfbf7d884358b77e746061cc3d3005fac320af8 (patch) | |
tree | 18c410aae4f891fa532c279ebb6c8f56562d4e94 /bfd/elf32-xtensa.c | |
parent | 758784b8f5784d3d65f8984657e0e68462ddccae (diff) | |
download | gdb-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.c | 2 |
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) |