summaryrefslogtreecommitdiff
path: root/ld/scripttempl
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2013-01-08 09:23:07 +0000
committerAlan Modra <amodra@bigpond.net.au>2013-01-08 09:23:07 +0000
commite99a5a3b7fc7fb493199a6af770470cdc32e8b08 (patch)
treeb62264486b0cd88cae2b259bacb600538e9d4a83 /ld/scripttempl
parentfc4d761a6e8051eda9149c9a6f12aecc7b701bfc (diff)
downloadbinutils-redhat-e99a5a3b7fc7fb493199a6af770470cdc32e8b08.tar.gz
* scripttempl/elf.sc (RODATA_ADDR): Typo fix.
Diffstat (limited to 'ld/scripttempl')
-rw-r--r--ld/scripttempl/elf.sc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/scripttempl/elf.sc b/ld/scripttempl/elf.sc
index cb162e8a86..7b390b44af 100644
--- a/ld/scripttempl/elf.sc
+++ b/ld/scripttempl/elf.sc
@@ -496,7 +496,7 @@ if test -n "${SEPARATE_CODE}"; then
RODATA_ADDR="\
SEGMENT_START(\"rodata-segment\", ${RODATA_ADDR}) + SIZEOF_HEADERS"
else
- RODATA_ADDR="ALIGN(${SEGMENT_SIZE}) + (. & (${MAXPAGESIZE} - 1))}"
+ RODATA_ADDR="ALIGN(${SEGMENT_SIZE}) + (. & (${MAXPAGESIZE} - 1))"
RODATA_ADDR="SEGMENT_START(\"rodata-segment\", ${RODATA_ADDR})"
fi
if test -n "${SHLIB_RODATA_ADDR}"; then