From: J.T. Conklin Date: Thu, 7 Mar 1996 00:12:34 +0000 (+0000) Subject: * scripttmpl/elfppc.sc (.sdata2, .sbss2): Implement Feb 2 change X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c56c921821b1e8906e29148d3408dfeec115bf68;p=binutils-gdb.git * scripttmpl/elfppc.sc (.sdata2, .sbss2): Implement Feb 2 change in a different manner to work around differences in shell variable expansion. --- 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 <