diff options
author | 2016-06-22 13:29:14 +0000 | |
---|---|---|
committer | 2016-06-22 13:29:14 +0000 | |
commit | 029fdb8485a2b0a59e338e46952e45e4b853114d (patch) | |
tree | 7a7bd58b9dc76e6f3e29b6408049f1c3fb67e1f8 | |
parent | Add support for the second GMX interface on Octeon II. This enables (diff) | |
download | wireguard-openbsd-029fdb8485a2b0a59e338e46952e45e4b853114d.tar.xz wireguard-openbsd-029fdb8485a2b0a59e338e46952e45e4b853114d.zip |
Don't make the DT_TEXTREL warning fatal. Hopefully this will be temporary,
but we first have to make sure that our tree is clean.
ok deraadt@
-rw-r--r-- | gnu/usr.bin/binutils-2.17/bfd/elflink.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/usr.bin/binutils-2.17/bfd/elflink.c b/gnu/usr.bin/binutils-2.17/bfd/elflink.c index 677fd5b5106..baa6e590148 100644 --- a/gnu/usr.bin/binutils-2.17/bfd/elflink.c +++ b/gnu/usr.bin/binutils-2.17/bfd/elflink.c @@ -8700,8 +8700,10 @@ bfd_elf_final_link (bfd *abfd, struct bfd_link_info *info) { _bfd_error_handler (_("warning: creating a DT_TEXTREL in a shared object.")); +#if 0 if (!info->allow_textrel) goto error_return; +#endif break; } } |