diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-10-11 03:20:59 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-10-11 03:20:59 +0000 |
commit | 92e8479365b7c38dedbdd96e1b8e3eb2645506d4 (patch) | |
tree | 2b51589863373389fc32eb9ee3aaceae0c1ccc73 | |
parent | d2a287ccbf1ffc0c042103587d758be6d35c74a4 (diff) | |
download | portage-92e8479365b7c38dedbdd96e1b8e3eb2645506d4.tar.gz portage-92e8479365b7c38dedbdd96e1b8e3eb2645506d4.tar.bz2 portage-92e8479365b7c38dedbdd96e1b8e3eb2645506d4.zip |
do not abort for the time being with lazy bindings and setuid apps and FEATURES=stricter
svn path=/main/trunk/; revision=4653
-rwxr-xr-x | bin/misc-functions.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index db9efbb19..95f4cf7a1 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -80,7 +80,8 @@ install_qa_check() { vecho " LDFLAGS='-Wl,-z,now' emerge ${PN}" vecho "${f}" vecho -ne '\a\n' - die_msg="${die_msg} setXid lazy bindings," + # Do not fail here until we have sorted out the lazy issues with security team + #die_msg="${die_msg} setXid lazy bindings," sleep 1 fi @@ -160,7 +161,7 @@ install_qa_check() { if [[ ${insecure_rpath} -eq 1 ]] ; then die "Aborting due to serious QA concerns with RUNPATH/RPATH" - elif [[ ${die_msg} != "" ]] && has stricter ${FEATURES} && ! has stricter ${RESTRICT} ; then + elif [[ -n ${die_msg} ]] && has stricter ${FEATURES} && ! has stricter ${RESTRICT} ; then die "Aborting due to QA concerns: ${die_msg}" fi |