* Peter O'Gorman wrote on Mon, Apr 11, 2005 at 03:50:03PM CEST: > Ralf Wildenhues wrote: > > | - *) deplibs="$deplibs $path" ;; > | + *) deplibs="$path $deplibs" ;; > > This is different to the patch for Zachary's bug which was: > - - *) deplibs="$deplibs $depdepl" ;; > + *) deplibs="$depdepl $deplibs" ;; > > I know that they look very similar though, and are only separated by 3 > lines, it fooled me 'til just this second. (I just deleted a whole other > email I was about to send :-p).
Not with the branch-1-5 patch of Alexandre: | diff -u -r1.334.2.65 ltmain.in | --- ltmain.in 16 Mar 2005 17:31:02 -0000 1.334.2.65 | +++ ltmain.in 8 Apr 2005 09:15:06 -0000 | @@ -2867,12 +2867,12 @@ | *) continue ;; | esac | case " $deplibs " in | - *" $depdepl "*) ;; | - *) deplibs="$depdepl $deplibs" ;; | + *" $path "*) ;; | + *) deplibs="$path $deplibs" ;; | esac | case " $deplibs " in | - *" $path "*) ;; | - *) deplibs="$deplibs $path" ;; | + *" $depdepl "*) ;; | + *) deplibs="$depdepl $deplibs" ;; | esac | done | fi # link_all_deplibs != no | The depdepl part is darwin-specific. Tell me this is a non-issue and I will happily believe you. :) Regards, Ralf
