mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-05 12:56:08 +00:00
Don't fail if we encounter a relocation of type "none". Just ignore
it. It's a no-op relocation. Trigger case: ports/x11-toolkits/pango
This commit is contained in:
parent
b37d468c2a
commit
b615f6d2b1
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=115940
@ -259,6 +259,9 @@ reloc_non_plt_obj(Obj_Entry *obj_rtld, Obj_Entry *obj, const Elf_Rela *rela,
|
||||
break;
|
||||
}
|
||||
|
||||
case R_IA64_NONE:
|
||||
break;
|
||||
|
||||
default:
|
||||
_rtld_error("%s: Unsupported relocation type %d"
|
||||
" in non-PLT relocations\n", obj->path,
|
||||
|
Loading…
Reference in New Issue
Block a user