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.2.10-38-g0483a52


From: Gary V. Vaughan
Subject: [SCM] GNU Libtool branch, master, updated. v2.2.10-38-g0483a52
Date: Sun, 27 Jun 2010 12:19:30 +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  0483a52e8b841709ccfd8a80c60db018e8451c1c (commit)
      from  001f756ffad29eee44988440e14dfc679bde34dc (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 0483a52e8b841709ccfd8a80c60db018e8451c1c
Author: Gary V. Vaughan <address@hidden>
Date:   Sun Jun 27 19:19:18 2010 +0700

    Add missing case branch terminators.
    
    * libltdl/config/ltmain.m4sh: Fixed everal case branches with
    missing ';;' terminators.
    
    Signed-off-by: Gary V. Vaughan <address@hidden>

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

Summary of changes:
 ChangeLog                  |    4 ++++
 libltdl/config/ltmain.m4sh |    8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 2336820..69117c9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2010-06-27  Gary V. Vaughan  <address@hidden>
 
+       Add missing case branch terminators.
+       * libltdl/config/ltmain.m4sh: Fixed everal case branches with
+       missing ';;' terminators.
+
        Use TAB-SPACE in preference to SPACE-TAB.
        * libltdl/m4/libtool.m4 (_LT_PROG_XSI_REPLACE): Some editors
        might optimise away the SPACE in SPACE-TAB sequences, so use
diff --git a/libltdl/config/ltmain.m4sh b/libltdl/config/ltmain.m4sh
index 59fbdb7..93c3222 100644
--- a/libltdl/config/ltmain.m4sh
+++ b/libltdl/config/ltmain.m4sh
@@ -5226,7 +5226,7 @@ func_mode_link ()
            *)
              case "$compile_rpath " in
              *" $absdir "*) ;;
-             *) compile_rpath="$compile_rpath $absdir"
+             *) compile_rpath="$compile_rpath $absdir" ;;
              esac
              ;;
            esac
@@ -5235,7 +5235,7 @@ func_mode_link ()
            *)
              case "$finalize_rpath " in
              *" $libdir "*) ;;
-             *) finalize_rpath="$finalize_rpath $libdir"
+             *) finalize_rpath="$finalize_rpath $libdir" ;;
              esac
              ;;
            esac
@@ -5300,7 +5300,7 @@ func_mode_link ()
            *)
              case "$compile_rpath " in
              *" $absdir "*) ;;
-             *) compile_rpath="$compile_rpath $absdir"
+             *) compile_rpath="$compile_rpath $absdir" ;;
              esac
              ;;
            esac
@@ -5309,7 +5309,7 @@ func_mode_link ()
            *)
              case "$finalize_rpath " in
              *" $libdir "*) ;;
-             *) finalize_rpath="$finalize_rpath $libdir"
+             *) finalize_rpath="$finalize_rpath $libdir" ;;
              esac
              ;;
            esac


hooks/post-receive
-- 
GNU Libtool



reply via email to

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