diff options
author | Arfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org> | 2010-04-16 01:18:50 +0200 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org> | 2010-04-16 01:18:50 +0200 |
commit | 8d9dcacc44cbff8945a72d8ca3dbc69e7954cfab (patch) | |
tree | 938f89832a6a9dc73d42d9c63cd6586ecbac39e0 | |
parent | a0d55a7bc4a0d595b01a4d11072f813870a58bf5 (diff) | |
download | portage-8d9dcacc44cbff8945a72d8ca3dbc69e7954cfab.tar.gz portage-8d9dcacc44cbff8945a72d8ca3dbc69e7954cfab.tar.bz2 portage-8d9dcacc44cbff8945a72d8ca3dbc69e7954cfab.zip |
Fix typo in check for shared libraries lacking NEEDED entries.
-rwxr-xr-x | bin/misc-functions.sh | 2 |
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 |