Browse Source

* 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 years ago
parent
commit
9da0729d7c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/systems/t_bsd.pas

+ 1 - 1
compiler/systems/t_bsd.pas

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