summaryrefslogtreecommitdiff
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
parentfc4d761a6e8051eda9149c9a6f12aecc7b701bfc (diff)
downloadbinutils-redhat-e99a5a3b7fc7fb493199a6af770470cdc32e8b08.tar.gz
* scripttempl/elf.sc (RODATA_ADDR): Typo fix.
-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 e38cde9211..67788df652 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,7 @@
+2013-01-08 Leif Ekblad <leif@rdos.net>
+
+ * scripttempl/elf.sc (RODATA_ADDR): Typo fix.
+
2013-01-08 Alan Modra <amodra@gmail.com>
* emultempl/elf32.em (gld${EMULATION_NAME}_check_ld_so_conf): Replace
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