summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-10-01 17:43:37 +0000
committerZac Medico <zmedico@gentoo.org>2008-10-01 17:43:37 +0000
commit3ad44074411171205a34142c9932927404f42593 (patch)
treeca6ef20feb9aa91ae6a344f609ca30e633c3eb89
parentHandle InvalidDependString from portdbapi.getFetchMap() inside (diff)
downloadportage-multirepo-3ad44074411171205a34142c9932927404f42593.tar.gz
portage-multirepo-3ad44074411171205a34142c9932927404f42593.tar.bz2
portage-multirepo-3ad44074411171205a34142c9932927404f42593.zip
Generate an eqawarn message if econf is called from src_compile and
src_configure is also defined. Thanks to Betelgeuse for the patch which I've modified to be silent in EAPI 0 or 1 in case ebuilds want to define src_configure in those EAPIs and call it manually from src_compile. svn path=/main/trunk/; revision=11603
-rwxr-xr-xbin/ebuild.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index 987d1a47..041d5fa4 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -436,6 +436,10 @@ econf() {
local x
local LOCAL_EXTRA_ECONF="${EXTRA_ECONF}"
+ ! hasq "$EAPI" 0 1 && [[ $EBUILD_PHASE = compile && \
+ $(type -t src_configure) = function ]] && \
+ eqawarn "econf called in src_compile instead of src_configure"
+
if [ -z "${ECONF_SOURCE}" ]; then
ECONF_SOURCE="."
fi