* Some fixes for names when installing libraries

git-svn-id: trunk@37751 -
This commit is contained in:
michael 2017-12-17 08:23:43 +00:00
parent 024a92b2da
commit 3990686be3

View File

@ -8562,6 +8562,8 @@ end;
function TTarget.GetLibraryFileName(AOS : TOS): String;
begin
result := AddLibraryExtension(Name, AOS);
if aOS in AllUnixOSes then
Result:='lib'+Result;
end;