From c56c921821b1e8906e29148d3408dfeec115bf68 Mon Sep 17 00:00:00 2001 From: "J.T. Conklin" Date: Thu, 7 Mar 1996 00:12:34 +0000 Subject: [PATCH] * scripttmpl/elfppc.sc (.sdata2, .sbss2): Implement Feb 2 change in a different manner to work around differences in shell variable expansion. --- ld/scripttempl/elfppc.sc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ld/scripttempl/elfppc.sc b/ld/scripttempl/elfppc.sc index fb77da27156..bc2105cd1fe 100644 --- a/ld/scripttempl/elfppc.sc +++ b/ld/scripttempl/elfppc.sc @@ -24,8 +24,10 @@ test -z "$ENTRY" && ENTRY=_start test -z "${BIG_OUTPUT_FORMAT}" && BIG_OUTPUT_FORMAT=${OUTPUT_FORMAT} test -z "${LITTLE_OUTPUT_FORMAT}" && LITTLE_OUTPUT_FORMAT=${OUTPUT_FORMAT} test "$LD_FLAG" = "N" && DATA_ADDR=. -INTERP=".interp ${RELOCATING-0} : { *(.interp) }" -PLT=".plt ${RELOCATING-0} : { *(.plt) }" +SBSS2=".sbss2 ${RELOCATING-0} : { *(.sbss2) }" +SDATA2=".sdata2 ${RELOCATING-0} : { *(.sdata2) }" +INTERP=".interp ${RELOCATING-0} : { *(.interp) }" +PLT=".plt ${RELOCATING-0} : { *(.plt) }" cat <