From: Bob Friesenhahn Date: Sun, 28 Nov 2004 01:35:45 +0000 (+0000) Subject: * config/ltmain.m4sh: Add fully-qualified paths to temp_rpath X-Git-Tag: release-2-1b~839 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9ceb28f7a5c9d10b4e07a3c2e86d48b6545823e;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 35228a91f..8028b55d3 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 2d5e32948..2e02351ac 100644 --- a/config/ltmain.m4sh +++ b/config/ltmain.m4sh @@ -3518,7 +3518,7 @@ func_mode_link () case "$temp_rpath " in *" $dir "*) ;; *" $absdir "*) ;; - *) temp_rpath="$temp_rpath $dir" ;; + *) temp_rpath="$temp_rpath $absdir" ;; esac fi