]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* config/ltmain.m4sh (func_mode_link): Don't pass through
authorPeter O'Gorman <peter@pogma.com>
Sun, 16 Jan 2005 14:07:35 +0000 (14:07 +0000)
committerPeter O'Gorman <peter@pogma.com>
Sun, 16 Jan 2005 14:07:35 +0000 (14:07 +0000)
compiler-like thread flags when using $LD to do the linking.
Use compiler_flags instead.
Reported by Mark_Andrews@isc.org.

ChangeLog
config/ltmain.m4sh

index 2e4f546d104c3fa91f314d10f5f3466e19154c1e..34ab2fc04c504599ae47b0322b545c97a7ea5f73 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2005-01-16  Peter O'Gorman  <peter@pogma.com>
 
+       * config/ltmain.m4sh (func_mode_link): Don't pass through 
+       compiler-like thread flags when using $LD to do the linking.
+       Use compiler_flags instead.
+       Reported by Mark_Andrews@isc.org.
+
        * m4/libtool.m4 (LT_CMD_MAX_LEN) [osf]: On Tru64 there could
        be a kernel panic when testing the maximum command line length
        if exec_disable_arg_limit=1. Don't do the tests to figure it 
index 638ba1400b71976bb534df380ef8fa5ecdd88562..975d07cb29f967e5e0bccb282f9e8c6eacbcf5b3 100644 (file)
@@ -2672,7 +2672,7 @@ func_mode_link ()
        ;;
 
       -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe)
-       deplibs="$deplibs $arg"
+       compiler_flags="$compiler_flags $arg"
        continue
        ;;
 
@@ -3143,7 +3143,7 @@ func_mode_link ()
            compile_deplibs="$deplib $compile_deplibs"
            finalize_deplibs="$deplib $finalize_deplibs"
          else
-           deplibs="$deplib $deplibs"
+           compiler_flags="$compiler_flags $deplib"
            if test "$linkmode" = lib ; then
                case "$new_inherited_linker_flags " in
                    *" $deplib "*) ;;