浏览代码

* fixed copy/paste error in r13645: fallback to /usr/lib/dylib1.o rather
than /usr/lib/bundle1.o when dylib1.o is not found

git-svn-id: trunk@13658 -

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

+ 1 - 1
compiler/systems/t_bsd.pas

@@ -234,7 +234,7 @@ begin
       else
         begin
           if not librarysearchpath.FindFile('dylib1.o',false,result) then
-            result:='/usr/lib/bundle1.o'
+            result:='/usr/lib/dylib1.o'
         end;
     end;
 end;