* avoid trailing spaces in solaris ld call

git-svn-id: trunk@14281 -
This commit is contained in:
pierre 2009-11-27 21:23:25 +00:00
parent 184d0d6a64
commit 2354c0d43a

View File

@ -507,7 +507,8 @@ begin
while not linkres.data.Empty do
begin
s:=linkres.data.GetFirst;
linkstr:=linkstr+s+' ';
if s<>'' then
linkstr:=linkstr+' '+s;
end;
linkres.free;
Replace(cmdstr,'$RESDATA',linkstr);