summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-03-09 20:37:56 +0000
committerZac Medico <zmedico@gentoo.org>2009-03-09 20:37:56 +0000
commit14efc18eb873f6ec0002c41d7a772b26f132f1b3 (patch)
tree791f1c1de0707e6d0b728f2bac5a357f27882199
parentWhen generating variable names to hold EXPORT_FUNCTIONS argument in, use (diff)
downloadportage-multirepo-14efc18eb873f6ec0002c41d7a772b26f132f1b3.tar.gz
portage-multirepo-14efc18eb873f6ec0002c41d7a772b26f132f1b3.tar.bz2
portage-multirepo-14efc18eb873f6ec0002c41d7a772b26f132f1b3.zip
Add more QA warnings for econf calls during unexpected phases. Thanks to
Diego Elio Pettenò <flameeyes@g.o> for the suggestion. svn path=/main/trunk/; revision=12808
-rwxr-xr-xbin/ebuild.sh15
1 files changed, 12 insertions, 3 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index e2a79676..09bc8f96 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -468,9 +468,18 @@ hasgq() { hasg "$@" >/dev/null ; }
econf() {
local x
- ! hasq "$EAPI" 0 1 && [[ $EBUILD_PHASE = compile && \
- $(type -t src_configure) = function ]] && \
- eqawarn "econf called in src_compile instead of src_configure"
+ local phase_func=$(_ebuild_arg_to_phase "$EAPI" "$EBUILD_PHASE")
+ if [[ -n $phase_func ]] ; then
+ if hasq "$EAPI" 0 1 ; then
+ [[ $phase_func != src_compile ]] && \
+ eqawarn "QA Notice: econf called in" \
+ "$phase_func instead of src_compile"
+ else
+ [[ $phase_func != src_configure ]] && \
+ eqawarn "QA Notice: econf called in" \
+ "$phase_func instead of src_configure"
+ fi
+ fi
: ${ECONF_SOURCE:=.}
if [ -x "${ECONF_SOURCE}/configure" ]; then