diff options
author | Alan Modra <amodra@gmail.com> | 2002-06-07 09:59:07 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-06-07 09:59:07 +0000 |
commit | f13a54248a537855d39530db63db0e31316c583c (patch) | |
tree | c9a2dedfa5bd5cf8dae546a86b4b7f02055db5a3 /ld/scripttempl | |
parent | c46f20ef0a87b6bb0b644a22e28514523352f031 (diff) | |
download | gdb-f13a54248a537855d39530db63db0e31316c583c.zip gdb-f13a54248a537855d39530db63db0e31316c583c.tar.gz gdb-f13a54248a537855d39530db63db0e31316c583c.tar.bz2 |
* scripttempl/elf.sc (.tbss): Fix mismatched parentheses/braces.
Diffstat (limited to 'ld/scripttempl')
-rw-r--r-- | ld/scripttempl/elf.sc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/scripttempl/elf.sc b/ld/scripttempl/elf.sc index 0cef64e..6bbe1b8 100644 --- a/ld/scripttempl/elf.sc +++ b/ld/scripttempl/elf.sc @@ -311,7 +311,7 @@ cat <<EOF } .data1 ${RELOCATING-0} : { *(.data1) } .tdata ${RELOCATING-0} : { *(.tdata${RELOCATING+ .tdata.* .gnu.linkonce.td.*}) } - .tbss ${RELOCATING-0} : { *(.tbss${RELOCATING+ .tbss.* .gnu.linkonce.tb.*) *(.tcommon}) } + .tbss ${RELOCATING-0} : { *(.tbss${RELOCATING+ .tbss.* .gnu.linkonce.tb.*})${RELOCATING+ *(.tcommon)} } .eh_frame ${RELOCATING-0} : { KEEP (*(.eh_frame)) } .gcc_except_table ${RELOCATING-0} : { *(.gcc_except_table) } ${WRITABLE_RODATA+${RODATA}} |