]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* ltmain.in [darwin]: We already had a module var, there can be
authorPeter O'Gorman <peter@pogma.com>
Fri, 30 Jul 2004 13:41:48 +0000 (13:41 +0000)
committerPeter O'Gorman <peter@pogma.com>
Fri, 30 Jul 2004 13:41:48 +0000 (13:41 +0000)
only one.

ChangeLog
ltmain.in

index 0b5714f4e429b67ca3103dfba085afee41a6e057..d4ac3b3c97fa6821eeeba8c43d8a19dd106c26af 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2004-07-30  Peter O'Gorman  <peter@pogma.com>
 
+       * ltmain.in [darwin]: We already had a module var, there can be
+       only one.
+
        * m4/libtool.m4, ltmain.in: autoconf now says the best thing to do
        with CDPATH is to (unset CDPATH) >/dev/null 2>&1 && unset CDPATH,
        so do it.
index 91fe69370145af942b3d555f1aa1e66cdb2d2d8f..4aca585dd453834a7c599dd238fb6e645cd5a234 100644 (file)
--- a/ltmain.in
+++ b/ltmain.in
@@ -2739,9 +2739,9 @@ EOF
          # Warn about portability, can't link against -module's on some
          # systems (darwin).  Don't bleat about dlopened modules though!
          dlopenmodule=""
-         for module in $dlprefiles; do
-           if test "X$module" = "X$lib"; then
-             dlopenmodule="$module"
+         for dlpremoduletest in $dlprefiles; do
+           if test "X$dlpremoduletest" = "X$lib"; then
+             dlopenmodule="$dlpremoduletest"
              break
            fi
          done