diff options
author | 2018-12-18 21:15:21 +0000 | |
---|---|---|
committer | 2018-12-18 21:15:21 +0000 | |
commit | c2437b9616ddcc06b6792aaaebb0f0cfffabd205 (patch) | |
tree | edd75e6fa3a46614afb8a62ae27b3830b33872b7 | |
parent | Generate PIE ldscripts on armv7, hppa, and sh, so that there are symbols (diff) | |
download | wireguard-openbsd-c2437b9616ddcc06b6792aaaebb0f0cfffabd205.tar.xz wireguard-openbsd-c2437b9616ddcc06b6792aaaebb0f0cfffabd205.zip |
The scripts just tests whether GENERATE_PIE_SCRIPT is set and ignores its
value, so setting it to 'no' was completely misleading
-rw-r--r-- | gnu/usr.bin/binutils-2.17/ld/emulparams/elf32m88k_obsd.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/binutils-2.17/ld/emulparams/elf32m88k_obsd.sh b/gnu/usr.bin/binutils-2.17/ld/emulparams/elf32m88k_obsd.sh index 9122e850390..2dab29584f8 100644 --- a/gnu/usr.bin/binutils-2.17/ld/emulparams/elf32m88k_obsd.sh +++ b/gnu/usr.bin/binutils-2.17/ld/emulparams/elf32m88k_obsd.sh @@ -2,5 +2,5 @@ # Force padding around .plt DATA_PLT= GENERATE_SHLIB_SCRIPT=yes -GENERATE_PIE_SCRIPT=no +GENERATE_PIE_SCRIPT=yes . ${srcdir}/emulparams/elf_obsd.sh |