From: Ralf Wildenhues Date: Thu, 29 Dec 2005 15:43:04 +0000 (+0000) Subject: * libltdl/config/ltmain.m4sh (func_mode_link) : X-Git-Tag: release-2-1b~348 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3036ac5576d906457a7f14943a9770246766ce92;p=thirdparty%2Flibtool.git * libltdl/config/ltmain.m4sh (func_mode_link) : Fix position of separator for shlibpath_var setting in shell wrapper. --- diff --git a/ChangeLog b/ChangeLog index 159555412..883d00892 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2005-12-29 Ralf Wildenhues + * libltdl/config/ltmain.m4sh (func_mode_link) : + Fix position of separator for shlibpath_var setting in shell + wrapper. + * libltdl/lt_error.c (error_strings): Remove parentheses around string literal initializers, uncovered by `tcc'. Reported by Edward Chernenko . diff --git a/libltdl/config/ltmain.m4sh b/libltdl/config/ltmain.m4sh index 99f44a8ff..3083c4d91 100644 --- a/libltdl/config/ltmain.m4sh +++ b/libltdl/config/ltmain.m4sh @@ -3591,7 +3591,7 @@ func_mode_link () # Make sure the rpath contains only unique directories. case "$temp_rpath " in *"$absdir:"*) ;; - *) temp_rpath="$temp_rpath:$absdir" ;; + *) temp_rpath="$temp_rpath$absdir:" ;; esac fi