From: Bob Friesenhahn Date: Sun, 28 Nov 2004 00:41:35 +0000 (+0000) Subject: * config/ltmain.m4sh: Add fully-qualified paths to temp_rpath X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5217d300e00b3a41364550557dafebd00e05aab0;p=thirdparty%2Flibtool.git * config/ltmain.m4sh: 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 14f7fb56a..8fe57aaee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-11-27 Bob Friesenhahn + + * config/ltmain.m4sh: Add fully-qualified paths to temp_rpath + rather than unqualified paths in order to avoid possible errors + when computing the fully-qualified path later. + 2004-11-24 Jeff Squyres * m4/libtool.m4 [linux] (_LT_COMPILER_PIC, _LT_LINKER_SHLIBS, diff --git a/config/ltmain.m4sh b/config/ltmain.m4sh index e13e2e3f2..8bd17d24b 100644 --- a/config/ltmain.m4sh +++ b/config/ltmain.m4sh @@ -3519,7 +3519,7 @@ func_mode_link () case "$temp_rpath " in *" $dir "*) ;; *" $absdir "*) ;; - *) temp_rpath="$temp_rpath $dir" ;; + *) temp_rpath="$temp_rpath $absdir" ;; esac fi