diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-06-22 13:29:15 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-06-22 13:29:15 +0000 |
commit | 60d308a8e5d5a64d3d3dd5e333bc0ce934bd430b (patch) | |
tree | b2852c6147d6c697088af0146867a0697600078f /gnu | |
parent | 73462c7bdc7a1fafe4da1df598cdf0f0ab2151ce (diff) |
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@
Diffstat (limited to 'gnu')
-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; } } |