浏览代码

* don't quote the Darwin syslibroot path in link.res, it's not reinterpreted
by the shell since it's cat'ed into the command line

git-svn-id: trunk@17422 -

Jonas Maebe 14 年之前
父节点
当前提交
1b5fed238a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      compiler/systems/t_bsd.pas

+ 1 - 1
compiler/systems/t_bsd.pas

@@ -321,7 +321,7 @@ begin
      (sysrootpath<>'') then
      (sysrootpath<>'') then
     begin
     begin
       LinkRes.Add('-syslibroot');
       LinkRes.Add('-syslibroot');
-      LinkRes.Add(maybequoted(sysrootpath));
+      LinkRes.Add(sysrootpath);
     end;
     end;
 
 
   if (not isdll) or
   if (not isdll) or