libtool-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Libtool branch, master, updated. v2.4.2-373-ga4629eb


From: Peter Rosin
Subject: [SCM] GNU Libtool branch, master, updated. v2.4.2-373-ga4629eb
Date: Wed, 01 May 2013 09:17:57 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Libtool".

The branch, master has been updated
       via  a4629ebff263dcb2e05feb9e41df649ea5ce3f78 (commit)
      from  68920ef8353f71c2e6c5c6b57a26cf55c0cff318 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a4629ebff263dcb2e05feb9e41df649ea5ce3f78
Author: Peter Rosin <address@hidden>
Date:   Sun Apr 28 09:16:56 2013 +0200

    libtool: break all the way out when a good nm is found
    
    The current code tries to locate a compatible nm tool.  It starts with
    a prefixed nm tool (great!) and includes a plain nm too (that's fine).
    The problem is that the code searches for the prefixed nm before the
    plain nm (normally fine), but doesn't break once it has found a valid
    match, and the plain nm ends up the winner.
    
    Report and analysis by Mike Frysinger.
    
    * m4/libtool.m4 (LT_PATH_NM): Break all the way out on a good match.
    
    Signed-off-by: Peter Rosin <address@hidden>

-----------------------------------------------------------------------

Summary of changes:
 m4/libtool.m4 |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/m4/libtool.m4 b/m4/libtool.m4
index 3f50b0c..d7013c5 100644
--- a/m4/libtool.m4
+++ b/m4/libtool.m4
@@ -3397,13 +3397,13 @@ else
        case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
        */dev/null* | *'Invalid file or object type'*)
          lt_cv_path_NM="$tmp_nm -B"
-         break
+         break 2
          ;;
        *)
          case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
          */dev/null*)
            lt_cv_path_NM="$tmp_nm -p"
-           break
+           break 2
            ;;
          *)
            lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but


hooks/post-receive
-- 
GNU Libtool



reply via email to

[Prev in Thread] Current Thread [Next in Thread]