summaryrefslogtreecommitdiffstats
path: root/bin/misc-functions.sh
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-12-27 18:26:49 +0000
committerZac Medico <zmedico@gentoo.org>2008-12-27 18:26:49 +0000
commit5d3cd320c07355c18b8cbc192d0a07859d874f2b (patch)
treeb689c22431baa966c612b994748ba1327e261225 /bin/misc-functions.sh
parent0c3e102dc4a6aa53255514dcb348cea4d17728ab (diff)
downloadportage-5d3cd320c07355c18b8cbc192d0a07859d874f2b.tar.gz
portage-5d3cd320c07355c18b8cbc192d0a07859d874f2b.tar.bz2
portage-5d3cd320c07355c18b8cbc192d0a07859d874f2b.zip
(trunk r12345)
svn path=/main/branches/2.1.6/; revision=12353
Diffstat (limited to 'bin/misc-functions.sh')
-rwxr-xr-xbin/misc-functions.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh
index 8ce82a2a8..e20626522 100755
--- a/bin/misc-functions.sh
+++ b/bin/misc-functions.sh
@@ -98,7 +98,7 @@ install_qa_check() {
export QA_TEXTRELS="${QA_TEXTRELS} lib*/modules/*.ko"
f=$(scanelf -qyRF '%t %p' "${D}" | grep -v 'usr/lib/debug/')
if [[ -n ${f} ]] ; then
- scanelf -qyRF '%T %p' "${PORTAGE_BUILDDIR}"/ &> "${T}"/scanelf-textrel.log
+ scanelf -qyRAF '%T %p' "${PORTAGE_BUILDDIR}"/ &> "${T}"/scanelf-textrel.log
vecho -ne '\a\n'
eqawarn "QA Notice: The following files contain runtime text relocations"
eqawarn " Text relocations force the dynamic linker to perform extra"
@@ -136,14 +136,14 @@ install_qa_check() {
[[ -n ${QA_STRICT_WX_LOAD} ]] && QA_WX_LOAD=""
export QA_EXECSTACK="${QA_EXECSTACK} lib*/modules/*.ko"
export QA_WX_LOAD="${QA_WX_LOAD} lib*/modules/*.ko"
- f=$(scanelf -qyRF '%e %p' "${D}" | grep -v 'usr/lib/debug/')
+ f=$(scanelf -qyRAF '%e %p' "${D}" | grep -v 'usr/lib/debug/')
;;
esac
;;
esac
if [[ -n ${f} ]] ; then
# One more pass to help devs track down the source
- scanelf -qyRF '%e %p' "${PORTAGE_BUILDDIR}"/ &> "${T}"/scanelf-execstack.log
+ scanelf -qyRAF '%e %p' "${PORTAGE_BUILDDIR}"/ &> "${T}"/scanelf-execstack.log
vecho -ne '\a\n'
eqawarn "QA Notice: The following files contain executable stacks"
eqawarn " Files with executable stacks will not work properly (or at all!)"