From 0483a52e8b841709ccfd8a80c60db018e8451c1c Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Sun, 27 Jun 2010 19:19:18 +0700 Subject: [PATCH] Add missing case branch terminators. * libltdl/config/ltmain.m4sh: Fixed everal case branches with missing ';;' terminators. Signed-off-by: Gary V. Vaughan --- ChangeLog | 4 ++++ libltdl/config/ltmain.m4sh | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) 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 -- 2.47.3