drop RESTRICT=stricter since every aspect it covers can be handled properly via other...
authorMike Frysinger <vapier@gentoo.org>
Sun, 3 Dec 2006 19:17:06 +0000 (19:17 -0000)
committerMike Frysinger <vapier@gentoo.org>
Sun, 3 Dec 2006 19:17:06 +0000 (19:17 -0000)
svn path=/main/trunk/; revision=5164

bin/misc-functions.sh

index bbfab8456f650feec61e0e94b196eb320c82d828..b0c7e571fc7d2f609e5dca33f01940f1d96e7f7e 100755 (executable)
@@ -47,7 +47,7 @@ install_qa_check() {
                local qa_var insecure_rpath=0 tmp_quiet=${PORTAGE_QUIET}
                
                # display warnings when using stricter because we die afterwards
-               if has stricter ${FEATURES} && ! has stricter ${RESTRICT}; then
+               if has stricter ${FEATURES} ; then
                        unset PORTAGE_QUIET
                fi
                
@@ -63,7 +63,7 @@ install_qa_check() {
                        vecho " with the maintaining herd of the package."
                        vecho "${f}"
                        vecho -ne '\a\n'
-                       if has stricter ${FEATURES} && ! has stricter ${RESTRICT}; then
+                       if has stricter ${FEATURES} ; then
                                insecure_rpath=1
                        else
                                vecho "Auto fixing rpaths for ${f}"
@@ -161,7 +161,7 @@ install_qa_check() {
 
                if [[ ${insecure_rpath} -eq 1 ]] ; then
                        die "Aborting due to serious QA concerns with RUNPATH/RPATH"
-               elif [[ -n ${die_msg} ]] && has stricter ${FEATURES} && ! has stricter ${RESTRICT} ; then
+               elif [[ -n ${die_msg} ]] && has stricter ${FEATURES} ; then
                        die "Aborting due to QA concerns: ${die_msg}"
                fi