From: Peter O'Gorman Date: Sun, 14 Mar 2004 14:28:20 +0000 (+0000) Subject: * ltmain.in (link_all_deplibs,darwin): Link libraries in the X-Git-Tag: release-1-5-4~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=17ab4f36d2ef33aeda0a2df06ba3ec1b42b4d389;p=thirdparty%2Flibtool.git * ltmain.in (link_all_deplibs,darwin): Link libraries in the correct order. Bug from Zachary Pincus . --- diff --git a/ChangeLog b/ChangeLog index 4f7e55a76..869119da3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,8 @@ 2004-03-14 Peter O'Gorman * ltmain.in: Use $EGREP, $GREP is not set. + * ltmain.in (link_all_deplibs,darwin): Link libraries in the + correct order. Bug from Zachary Pincus . 2004-03-14 Scott James Remnant diff --git a/ltmain.in b/ltmain.in index 312f50be3..988372974 100644 --- a/ltmain.in +++ b/ltmain.in @@ -2672,7 +2672,7 @@ EOF esac case " $deplibs " in *" $depdepl "*) ;; - *) deplibs="$deplibs $depdepl" ;; + *) deplibs="$depdepl $deplibs" ;; esac case " $deplibs " in *" $path "*) ;;