From b8c06f1f9b0a3e456b89d18380274b34e6e243ad Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 18 Dec 2007 08:21:37 +0000 Subject: Only enable the PORTAGE_IUSE check during build time phases since that's the only time it's valid for now. svn path=/main/trunk/; revision=8951 --- bin/ebuild.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bin/ebuild.sh b/bin/ebuild.sh index e88f73442..27355a339 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -138,7 +138,12 @@ useq() { fi # Make sure we have this USE flag in IUSE - if [[ ${EBUILD_PHASE} != depend ]] && [[ -n ${PORTAGE_IUSE} ]] ; then + 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. echo "${u}" | egrep -q "${PORTAGE_IUSE}" || \ eqawarn "QA Notice: USE Flag '${u}' not" \ "in IUSE for ${CATEGORY}/${PF}" -- cgit v1.2.3-1-g7c22