diff options
author | Alan Modra <amodra@gmail.com> | 2022-01-13 15:44:51 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2022-01-13 16:39:35 +1030 |
commit | 34c95e6aad5ab9d709cffdd7065fa9b88f2ce7d2 (patch) | |
tree | 728e351cf5c516b2341748046352ee345cfa685d /ld/scripttempl | |
parent | fb6ac163adc48a20be9d0a8de4c691b73431d3dd (diff) | |
download | gdb-34c95e6aad5ab9d709cffdd7065fa9b88f2ce7d2.zip gdb-34c95e6aad5ab9d709cffdd7065fa9b88f2ce7d2.tar.gz gdb-34c95e6aad5ab9d709cffdd7065fa9b88f2ce7d2.tar.bz2 |
Correct .relr.dyn nocombreloc script
* scripttempl/elf.sc (.relr.dyn): Don't depend on $COMBRELOC.
Diffstat (limited to 'ld/scripttempl')
-rw-r--r-- | ld/scripttempl/elf.sc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/scripttempl/elf.sc b/ld/scripttempl/elf.sc index f3552a4..bf2268b 100644 --- a/ld/scripttempl/elf.sc +++ b/ld/scripttempl/elf.sc @@ -521,7 +521,7 @@ emit_dyn() fi fi rm -f ldscripts/dyntmp.$$ - if test -n "${COMBRELOC}" && test -n "${HAVE_DT_RELR}"; then + if test -n "${HAVE_DT_RELR}"; then echo " .relr.dyn : { *(.relr.dyn) }" fi } |