]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* ltmain.in (link_all_deplibs,darwin): Link libraries in the
authorPeter O'Gorman <peter@pogma.com>
Sun, 14 Mar 2004 14:36:54 +0000 (14:36 +0000)
committerPeter O'Gorman <peter@pogma.com>
Sun, 14 Mar 2004 14:36:54 +0000 (14:36 +0000)
correct order. Bug from Zachary Pincus <zpincus@stanford.edu>.

ChangeLog
ltmain.in

index dfe75e32598ba8b793a42412bb2322b1d6654390..cc9e782b45b6fbab8da0cb799cc1a83b9835e1a5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-03-11  Peter O'Gorman  <peter@pogma.com>
+
+       * ltmain.in (link_all_deplibs,darwin): Link libraries in the
+       correct order. Bug from Zachary Pincus <zpincus@stanford.edu>.
+
 2004-03-14  Scott James Remnant  <scott@netsplit.com>
 
        * m4/ltmain.in: Only check precious_files_regex if it is not empty.
index c6dddff5548f85dd4d9ef163b49a4f48bb527016..8e9e627a9c68e727f923615f287447dcd5988e1c 100644 (file)
--- 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 "*) ;;