From: Peter O'Gorman Date: Sun, 14 Mar 2004 14:36:54 +0000 (+0000) Subject: * ltmain.in (link_all_deplibs,darwin): Link libraries in the X-Git-Tag: release-1-9b~132 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=231ac6f7d3952953ccba6bc5e7bb1c3f1ab02701;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 dfe75e325..cc9e782b4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-03-11 Peter O'Gorman + + * ltmain.in (link_all_deplibs,darwin): Link libraries in the + correct order. Bug from Zachary Pincus . + 2004-03-14 Scott James Remnant * m4/ltmain.in: Only check precious_files_regex if it is not empty. diff --git a/ltmain.in b/ltmain.in index c6dddff55..8e9e627a9 100644 --- a/ltmain.in +++ b/ltmain.in @@ -2775,7 +2775,7 @@ EOF esac case " $deplibs " in *" $depdepl "*) ;; - *) deplibs="$deplibs $depdepl" ;; + *) deplibs="$depdepl $deplibs" ;; esac case " $deplibs " in *" $path "*) ;;