summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/ebuild.sh7
1 files changed, 6 insertions, 1 deletions
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}"