2
0
Эх сурвалжийг харах

* avoid trailing spaces in solaris ld call

git-svn-id: trunk@14281 -
pierre 15 жил өмнө
parent
commit
2354c0d43a

+ 2 - 1
compiler/systems/t_sunos.pas

@@ -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);