aboutsummaryrefslogtreecommitdiff
path: root/ld/scripttempl
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2002-03-04 01:37:52 +0000
committerAlan Modra <amodra@gmail.com>2002-03-04 01:37:52 +0000
commitf42ce16e2f08589abe64bf29d162c10325d36eee (patch)
tree6d7e2ba4487554851a3f7fdcb28dc65ff6b080fe /ld/scripttempl
parentbb2a49f24718e0d5cb66144f31ac7e4ed3929fa7 (diff)
downloadfsf-binutils-gdb-f42ce16e2f08589abe64bf29d162c10325d36eee.zip
fsf-binutils-gdb-f42ce16e2f08589abe64bf29d162c10325d36eee.tar.gz
fsf-binutils-gdb-f42ce16e2f08589abe64bf29d162c10325d36eee.tar.bz2
* scripttempl/elf.sc: Correct syntax errors in 2002-03-01 commit.
Diffstat (limited to 'ld/scripttempl')
-rw-r--r--ld/scripttempl/elf.sc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/scripttempl/elf.sc b/ld/scripttempl/elf.sc
index bf67811..7fda8ba 100644
--- a/ld/scripttempl/elf.sc
+++ b/ld/scripttempl/elf.sc
@@ -250,12 +250,12 @@ cat <<EOF
could instead move the label definition inside the section, but
the linker would then create the section even if it turns out to
be empty, which isn't pretty. */
- ${RELOCATING+. = ALIGN(${ALIGNMENT})}
+ ${RELOCATING+. = ALIGN(${ALIGNMENT});}
${RELOCATING+${CREATE_SHLIB-PROVIDE (__preinit_array_start = .);}}
.preinit_array ${RELOCATING-0} : { *(.preinit_array) }
${RELOCATING+${CREATE_SHLIB-PROVIDE (__preinit_array_end = .);}}
- ${RELOCATING+${CREATE_SHLIB-PROVIDE (__init_array_start = .)}};
+ ${RELOCATING+${CREATE_SHLIB-PROVIDE (__init_array_start = .);}}
.init_array ${RELOCATING-0} : { *(.init_array) }
${RELOCATING+${CREATE_SHLIB-PROVIDE (__init_array_end = .);}}