summaryrefslogtreecommitdiffstats
path: root/bin/misc-functions.sh
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2010-04-16 01:18:50 +0200
committerArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2010-04-16 01:18:50 +0200
commit8d9dcacc44cbff8945a72d8ca3dbc69e7954cfab (patch)
tree938f89832a6a9dc73d42d9c63cd6586ecbac39e0 /bin/misc-functions.sh
parenta0d55a7bc4a0d595b01a4d11072f813870a58bf5 (diff)
downloadportage-8d9dcacc44cbff8945a72d8ca3dbc69e7954cfab.tar.gz
portage-8d9dcacc44cbff8945a72d8ca3dbc69e7954cfab.tar.bz2
portage-8d9dcacc44cbff8945a72d8ca3dbc69e7954cfab.zip
Fix typo in check for shared libraries lacking NEEDED entries.
Diffstat (limited to 'bin/misc-functions.sh')
-rwxr-xr-xbin/misc-functions.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh
index 39d8ca3dc..2fd049198 100755
--- a/bin/misc-functions.sh
+++ b/bin/misc-functions.sh
@@ -279,7 +279,7 @@ install_qa_check() {
# Check for shared libraries lacking NEEDED entries
qa_var="QA_DT_NEEDED_${ARCH/-/_}"
eval "[[ -n \${!qa_var} ]] && QA_DT_NEEDED=(\"\${${qa_var}[@]}\")"
- f=$(scanelf -ByF '%n %p' "${D}"{,usr/}lib*.so* | gawk '$2 == "" { print }' | sed -e "s:^[[:space:]]${D}:/:")
+ f=$(scanelf -ByF '%n %p' "${D}"{,usr/}lib*/lib*.so* | gawk '$2 == "" { print }' | sed -e "s:^[[:space:]]${D}:/:")
if [[ -n ${f} ]] ; then
echo "${f}" > "${T}"/scanelf-missing-NEEDED.log
if [[ "${QA_STRICT_DT_NEEDED-unset}" == unset ]] ; then