From: Marius Mauch Date: Sun, 27 Apr 2008 08:56:53 +0000 (-0000) Subject: actually use rpath for the internal lib check X-Git-Tag: v2.2_pre6~100 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6b391b3ef335c0244f5bb36d0f0c0f61f1ae1a92;p=portage.git actually use rpath for the internal lib check svn path=/main/trunk/; revision=9997 --- diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index 995ec0b37..6bc0419e0 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -176,7 +176,11 @@ install_qa_check() { sneeded=$(echo ${needed} | tr , ' ') rneeded="" for lib in ${sneeded}; do - [ -e "${D}/${dir}/${lib}" ] || rneeded="${rneeded},${lib}" + found=0 + for path in ${opath//:/ }; do + [ -e "${D}/${path}/${lib}" ] && found=1 + done + [ "${found}" -gt 0 ] && rneeded="${rneeded},${lib}" done rneeded=${rneeded:1} if [ -n "${rneeded}" ]; then