From f5de8effa14f6b53ce0257c51c2201235ab63773 Mon Sep 17 00:00:00 2001 From: marcel Date: Sat, 7 Jun 2003 07:52:17 +0000 Subject: 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 --- libexec/rtld-elf/ia64/reloc.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libexec') diff --git a/libexec/rtld-elf/ia64/reloc.c b/libexec/rtld-elf/ia64/reloc.c index 0c62a87..ca68ca0 100644 --- a/libexec/rtld-elf/ia64/reloc.c +++ b/libexec/rtld-elf/ia64/reloc.c @@ -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, -- cgit v1.1