]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
Add missing case branch terminators.
authorGary V. Vaughan <gary@gnu.org>
Sun, 27 Jun 2010 12:19:18 +0000 (19:19 +0700)
committerGary V. Vaughan <gary@gnu.org>
Sun, 27 Jun 2010 12:19:18 +0000 (19:19 +0700)
* libltdl/config/ltmain.m4sh: Fixed everal case branches with
missing ';;' terminators.

Signed-off-by: Gary V. Vaughan <gary@gnu.org>
ChangeLog
libltdl/config/ltmain.m4sh

index 2336820919ef03c302d48287d39f6a868aa0bab7..69117c9bb96a9c96ada401b62d000df6c3b31d89 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2010-06-27  Gary V. Vaughan  <gary@gnu.org>
 
+       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
index 59fbdb702df305f7b573dc9cb6fcfc64c0a8d9aa..93c3222a5e246da6b90950f1d87147d61be62836 100644 (file)
@@ -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