summaryrefslogtreecommitdiffstats
path: root/bin/phase-functions.sh
diff options
context:
space:
mode:
authorBrian Harring <ferringb@gmail.com>2012-09-13 23:29:44 -0700
committerZac Medico <zmedico@gentoo.org>2012-09-14 00:14:21 -0700
commit5a3fb946698ec789e724158ec5742cdc49ac7473 (patch)
treeb743666482ef77988b305f43c550b8fcdcadb4be /bin/phase-functions.sh
parent4c14931d6ae701bd83bbe526001d2b7ba664b58e (diff)
downloadportage-5a3fb946698ec789e724158ec5742cdc49ac7473.tar.gz
portage-5a3fb946698ec789e724158ec5742cdc49ac7473.tar.bz2
portage-5a3fb946698ec789e724158ec5742cdc49ac7473.zip
Convert funcs of ebuild.sh to __ prefixed namespace.
Diffstat (limited to 'bin/phase-functions.sh')
-rw-r--r--bin/phase-functions.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/phase-functions.sh b/bin/phase-functions.sh
index 71f4787e9..7048419ff 100644
--- a/bin/phase-functions.sh
+++ b/bin/phase-functions.sh
@@ -198,7 +198,7 @@ __preprocess_ebuild_env() {
}
__ebuild_phase() {
- declare -F "$1" >/dev/null && qa_call $1
+ declare -F "$1" >/dev/null && __qa_call $1
}
__ebuild_phase_with_hooks() {
@@ -865,7 +865,7 @@ __ebuild_main() {
[[ -n $phase_func ]] && __ebuild_phase_funcs "$EAPI" "$phase_func"
unset phase_func
- source_all_bashrcs
+ __source_all_bashrcs
case ${1} in
nofetch)