Переглянути джерело

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