summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-04-30 07:00:47 +0000
committerZac Medico <zmedico@gentoo.org>2009-04-30 07:00:47 +0000
commit9748f33494e25775938896846b2926f3b8682f4e (patch)
treee04bf079f20b6c2baec63fdfcddf713f2439a642 /bin
parent- Move DEFINED_PHASES code into _source_ebuild() and add it to the list of (diff)
downloadportage-multirepo-9748f33494e25775938896846b2926f3b8682f4e.tar.gz
portage-multirepo-9748f33494e25775938896846b2926f3b8682f4e.tar.bz2
portage-multirepo-9748f33494e25775938896846b2926f3b8682f4e.zip
Call _ebuild_phase_funcs() from ebuild_main() since it needs to be called for
every phase (for EAPI 2 default() phase function setup). (trunk r13301) svn path=/main/branches/2.1.6/; revision=13472
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ebuild.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index 8d1c8a0e..c086e6d3 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -1861,11 +1861,6 @@ _source_ebuild() {
done
[[ -n $DEFINED_PHASES ]] || DEFINED_PHASES=-
- if [[ -n $EBUILD_PHASE && $EBUILD_PHASE != depend ]] ; then
- local phase_func=$(_ebuild_arg_to_phase "$EAPI" "$EBUILD_PHASE")
- [[ -n $phase_func ]] && _ebuild_phase_funcs "$EAPI" "$phase_func"
- fi
-
# This needs to be exported since prepstrip is a separate shell script.
[[ -n $QA_PRESTRIPPED ]] && export QA_PRESTRIPPED
}
@@ -1933,6 +1928,11 @@ ebuild_main() {
fi
fi
+ if [[ $EBUILD_PHASE != depend ]] ; then
+ local phase_func=$(_ebuild_arg_to_phase "$EAPI" "$EBUILD_PHASE")
+ [[ -n $phase_func ]] && _ebuild_phase_funcs "$EAPI" "$phase_func"
+ fi
+
source_all_bashrcs
case ${EBUILD_SH_ARGS} in