* scripttempl/elf.sc: Correct syntax errors in 2002-03-01 commit.
authorAlan Modra <amodra@gmail.com>
Mon, 4 Mar 2002 01:37:52 +0000 (01:37 +0000)
committerAlan Modra <amodra@gmail.com>
Mon, 4 Mar 2002 01:37:52 +0000 (01:37 +0000)
ld/ChangeLog
ld/scripttempl/elf.sc

index c0699c746eea2ddc9a6f4079ad68587b04767a03..05c7fa23991cbf05fe0ab1d18d153b3794d903a8 100644 (file)
@@ -1,3 +1,7 @@
+2002-03-04  Alan Modra  <amodra@bigpond.net.au>
+
+       * scripttempl/elf.sc: Correct syntax errors in 2002-03-01 commit.
+
 2002-03-01  David Mosberger  <davidm@hpl.hp.com>
 
        * scripttempl/elf.sc (SECTIONS): Add entries for .preinit_array,
index bf678117772e2d625583626a3c5a240cebcbce8b..7fda8ba89a0ffdb0e9996ec79fab2d4c49e99b59 100644 (file)
@@ -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 = .);}}
 
This page took 0.029083 seconds and 4 git commands to generate.