Add the name of the missing symbol to the error message that is sent via port.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29515 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz 2009-03-14 14:14:21 +00:00
parent dd169d9e23
commit e94d1badf5

View File

@ -1450,6 +1450,10 @@ resolve_symbol(image_t *rootImage, image_t *image, struct Elf32_Sym *sym,
"hidden by symbol patchers\n", symName);
break;
}
if (report_errors())
sErrorMessage.AddString("missing symbol", symName);
return B_MISSING_SYMBOL;
}