]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
libtool bug fix.
authorBruno Haible <bruno@clisp.org>
Tue, 21 Jan 2003 21:21:31 +0000 (21:21 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:08:56 +0000 (12:08 +0200)
ChangeLog
libasprintf/ChangeLog
libasprintf/ltmain.sh
ltmain.sh

index 4ae36c759f0c0fa4bd84ea1ee62bbf882c1f6797..77861cf294c3256e81d22b6c96fc506be7ea52c7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2003-01-03  Albert Chin  <libtool@thewrittenword.com>
+
+       * ltmain.sh: Don't pass -R flags found in a .la's dependency_libs
+       variable directly down to the linker.
+       Reported by Tim Mooney <mooney@dogbert.cc.ndsu.nodak.edu>.
+
 2003-01-14  Bruno Haible  <bruno@clisp.org>
 
        * configure.in (gt_cv_prog_cxx_namespaces): Reject C++ compilers that
index 7de1a0a5474f13cee0ace7ac5357132d3e05ebb0..01440464ee95e549164b59d5e4e9030a478b00a6 100644 (file)
@@ -1,3 +1,9 @@
+2003-01-03  Albert Chin  <libtool@thewrittenword.com>
+
+       * ltmain.sh: Don't pass -R flags found in a .la's dependency_libs
+       variable directly down to the linker.
+       Reported by Tim Mooney <mooney@dogbert.cc.ndsu.nodak.edu>.
+
 2003-01-12  Bruno Haible  <bruno@clisp.org>
 
        * configure.in: Invoke gl_FUNC_ALLOCA instead of AC_FUNC_ALLOCA.
index dcebb5f09eb19f9512988a7b7f83f3efa4da1a00..52cc1678cd7e7b6a16863ef4b7ce4895859890db 100644 (file)
@@ -2092,6 +2092,7 @@ compiler."
          for deplib in $tmp_libs; do
            case $deplib in
            -L*) new_libs="$deplib $new_libs" ;;
+           -R*) ;;
            *)
              case " $specialdeplibs " in
              *" $deplib "*) new_libs="$deplib $new_libs" ;;
index dcebb5f09eb19f9512988a7b7f83f3efa4da1a00..52cc1678cd7e7b6a16863ef4b7ce4895859890db 100644 (file)
--- a/ltmain.sh
+++ b/ltmain.sh
@@ -2092,6 +2092,7 @@ compiler."
          for deplib in $tmp_libs; do
            case $deplib in
            -L*) new_libs="$deplib $new_libs" ;;
+           -R*) ;;
            *)
              case " $specialdeplibs " in
              *" $deplib "*) new_libs="$deplib $new_libs" ;;