소스 검색

* 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;