aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2002-06-07 09:59:07 +0000
committerAlan Modra <amodra@gmail.com>2002-06-07 09:59:07 +0000
commitf13a54248a537855d39530db63db0e31316c583c (patch)
treec9a2dedfa5bd5cf8dae546a86b4b7f02055db5a3 /ld
parentc46f20ef0a87b6bb0b644a22e28514523352f031 (diff)
downloadgdb-f13a54248a537855d39530db63db0e31316c583c.zip
gdb-f13a54248a537855d39530db63db0e31316c583c.tar.gz
gdb-f13a54248a537855d39530db63db0e31316c583c.tar.bz2
* scripttempl/elf.sc (.tbss): Fix mismatched parentheses/braces.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog4
-rw-r--r--ld/scripttempl/elf.sc2
2 files changed, 5 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index fe10455..6efe3d7 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,7 @@
+2002-06-07 Alan Modra <amodra@bigpond.net.au>
+
+ * scripttempl/elf.sc (.tbss): Fix mismatched parentheses/braces.
+
2002-06-06 John David Anglin <dave@hiauly1.hia.nrc.ca>
* configure.host (hppa*64*-*-hpux11*): Define NATIVE_LIB_DIRS,
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}}