summaryrefslogtreecommitdiffstats
path: root/bin/ebuild.sh
diff options
context:
space:
mode:
authorBrian Harring <ferringb@gmail.com>2012-09-13 23:00:10 -0700
committerZac Medico <zmedico@gentoo.org>2012-09-14 00:13:31 -0700
commit7571867c71392b5c61b040884017c00e9d1ecb3f (patch)
tree92b8b615b5d01c34b69d378033dc001723fcd7d2 /bin/ebuild.sh
parent9b19ac5696c487dab58d7c10990fe07fd7f1f731 (diff)
downloadportage-7571867c71392b5c61b040884017c00e9d1ecb3f.tar.gz
portage-7571867c71392b5c61b040884017c00e9d1ecb3f.tar.bz2
portage-7571867c71392b5c61b040884017c00e9d1ecb3f.zip
Convert funcs of phase*.sh to __ prefixed namespace.
Diffstat (limited to 'bin/ebuild.sh')
-rwxr-xr-xbin/ebuild.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index c6f267669..2f68b2e94 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -473,7 +473,7 @@ if ! has "$EBUILD_PHASE" clean cleanrm depend && \
# may have come from another version of ebuild.sh or something.
# In any case, preprocess it to prevent any potential interference.
# NOTE: export ${FOO}=... requires quoting, unlike normal exports
- preprocess_ebuild_env || \
+ __preprocess_ebuild_env || \
die "error processing environment"
# Colon separated SANDBOX_* variables need to be cumulative.
for x in SANDBOX_DENY SANDBOX_READ SANDBOX_PREDICT SANDBOX_WRITE ; do
@@ -681,7 +681,7 @@ if [[ $EBUILD_PHASE = depend ]] ; then
fi
set +f
else
- # Note: readonly variables interfere with preprocess_ebuild_env(), so
+ # Note: readonly variables interfere with __preprocess_ebuild_env(), so
# declare them only after it has already run.
declare -r $PORTAGE_READONLY_METADATA $PORTAGE_READONLY_VARS
case "$EAPI" in
@@ -699,7 +699,7 @@ else
# Don't allow subprocesses to inherit the pipe which
# emerge uses to monitor ebuild.sh.
exec 9>&-
- ebuild_main ${EBUILD_SH_ARGS}
+ __ebuild_main ${EBUILD_SH_ARGS}
exit 0
)
exit $?