* scripttempl/elf.sc (RODATA_ADDR): Typo fix.

This commit is contained in:
Alan Modra 2013-01-08 09:23:07 +00:00
parent 98e385126e
commit 34d560337b
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -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