From: Bob Friesenhahn Date: Thu, 16 Jun 2005 14:29:18 +0000 (+0000) Subject: * ltmain.in: Add fully-qualified paths to temp_rpath X-Git-Tag: release-1-5-20~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b0eb1dd8f0750f80736d35a98d4401dd5a579d3a;p=thirdparty%2Flibtool.git * ltmain.in: Add fully-qualified paths to temp_rpath rather than unqualified paths in order to avoid possible errors when computing the fully-qualified path later. --- diff --git a/ChangeLog b/ChangeLog index 5ff0df629..61c63d966 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-06-16 Bob Friesenhahn + + * ltmain.in: Add fully-qualified paths to temp_rpath + rather than unqualified paths in order to avoid possible errors + when computing the fully-qualified path later. + 2005-06-11 Ralf Wildenhues * libtool.m4 (AC_LIBTOOL_COMPILER_OPTION, AC_LIBTOOL_PROG_CC_C_O): diff --git a/ltmain.in b/ltmain.in index 07e907ea6..2fcd0053e 100644 --- a/ltmain.in +++ b/ltmain.in @@ -2407,7 +2407,7 @@ EOF case "$temp_rpath " in *" $dir "*) ;; *" $absdir "*) ;; - *) temp_rpath="$temp_rpath $dir" ;; + *) temp_rpath="$temp_rpath $absdir" ;; esac fi