From: Gary V. Vaughan Date: Sun, 27 Jun 2010 12:19:18 +0000 (+0700) Subject: Add missing case branch terminators. X-Git-Tag: v2.4~131 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=0483a52e8b841709ccfd8a80c60db018e8451c1c;p=thirdparty%2Flibtool.git Add missing case branch terminators. * libltdl/config/ltmain.m4sh: Fixed everal case branches with missing ';;' terminators. Signed-off-by: Gary V. Vaughan --- diff --git a/ChangeLog b/ChangeLog index 233682091..69117c9bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-06-27 Gary V. Vaughan + 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 59fbdb702..93c3222a5 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