Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r12353 - main/branches/2.1.6/bin
Date: Sat, 27 Dec 2008 18:26:53
Message-Id: E1LGdsA-0005Dn-Im@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-12-27 18:26:49 +0000 (Sat, 27 Dec 2008)
3 New Revision: 12353
4
5 Modified:
6 main/branches/2.1.6/bin/misc-functions.sh
7 Log:
8 (trunk r12345)
9
10 Modified: main/branches/2.1.6/bin/misc-functions.sh
11 ===================================================================
12 --- main/branches/2.1.6/bin/misc-functions.sh 2008-12-27 00:36:42 UTC (rev 12352)
13 +++ main/branches/2.1.6/bin/misc-functions.sh 2008-12-27 18:26:49 UTC (rev 12353)
14 @@ -98,7 +98,7 @@
15 export QA_TEXTRELS="${QA_TEXTRELS} lib*/modules/*.ko"
16 f=$(scanelf -qyRF '%t %p' "${D}" | grep -v 'usr/lib/debug/')
17 if [[ -n ${f} ]] ; then
18 - scanelf -qyRF '%T %p' "${PORTAGE_BUILDDIR}"/ &> "${T}"/scanelf-textrel.log
19 + scanelf -qyRAF '%T %p' "${PORTAGE_BUILDDIR}"/ &> "${T}"/scanelf-textrel.log
20 vecho -ne '\a\n'
21 eqawarn "QA Notice: The following files contain runtime text relocations"
22 eqawarn " Text relocations force the dynamic linker to perform extra"
23 @@ -136,14 +136,14 @@
24 [[ -n ${QA_STRICT_WX_LOAD} ]] && QA_WX_LOAD=""
25 export QA_EXECSTACK="${QA_EXECSTACK} lib*/modules/*.ko"
26 export QA_WX_LOAD="${QA_WX_LOAD} lib*/modules/*.ko"
27 - f=$(scanelf -qyRF '%e %p' "${D}" | grep -v 'usr/lib/debug/')
28 + f=$(scanelf -qyRAF '%e %p' "${D}" | grep -v 'usr/lib/debug/')
29 ;;
30 esac
31 ;;
32 esac
33 if [[ -n ${f} ]] ; then
34 # One more pass to help devs track down the source
35 - scanelf -qyRF '%e %p' "${PORTAGE_BUILDDIR}"/ &> "${T}"/scanelf-execstack.log
36 + scanelf -qyRAF '%e %p' "${PORTAGE_BUILDDIR}"/ &> "${T}"/scanelf-execstack.log
37 vecho -ne '\a\n'
38 eqawarn "QA Notice: The following files contain executable stacks"
39 eqawarn " Files with executable stacks will not work properly (or at all!)"