mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 19:29:39 +02:00
* avoid trailing spaces in solaris ld call
git-svn-id: trunk@14281 -
This commit is contained in:
parent
184d0d6a64
commit
2354c0d43a
@ -507,7 +507,8 @@ begin
|
|||||||
while not linkres.data.Empty do
|
while not linkres.data.Empty do
|
||||||
begin
|
begin
|
||||||
s:=linkres.data.GetFirst;
|
s:=linkres.data.GetFirst;
|
||||||
linkstr:=linkstr+s+' ';
|
if s<>'' then
|
||||||
|
linkstr:=linkstr+' '+s;
|
||||||
end;
|
end;
|
||||||
linkres.free;
|
linkres.free;
|
||||||
Replace(cmdstr,'$RESDATA',linkstr);
|
Replace(cmdstr,'$RESDATA',linkstr);
|
||||||
|
Loading…
Reference in New Issue
Block a user