From: Zac Medico Date: Thu, 30 Apr 2009 21:15:37 +0000 (-0000) Subject: Enable use() qa checks via PORTAGE_IUSE for all ebuild phases and for binary X-Git-Tag: v2.1.6.12~8 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b3d6d9290bb69bb482a36f565c3792d7f06866b2;p=portage.git Enable use() qa checks via PORTAGE_IUSE for all ebuild phases and for binary packages since it should work fine now. (trunk r13570) svn path=/main/branches/2.1.6/; revision=13572 --- diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 02587d9cb..65154143c 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -142,12 +142,7 @@ useq() { fi # Make sure we have this USE flag in IUSE - if [[ -n ${PORTAGE_IUSE} ]] && \ - [[ -n ${EBUILD_PHASE} ]] && \ - ! hasq ${EBUILD_PHASE} config depend info prerm postrm postinst && \ - [[ ${EMERGE_FROM} != binary ]] ; then - # TODO: Implement PORTAGE_IUSE for binary packages. Currently, - # it is only valid for build time phases. + if [[ -n $PORTAGE_IUSE && -n $EBUILD_PHASE ]] ; then [[ $u =~ $PORTAGE_IUSE ]] || \ eqawarn "QA Notice: USE Flag '${u}' not" \ "in IUSE for ${CATEGORY}/${PF}"