summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-10-27 12:32:18 -0700
committerZac Medico <zmedico@gentoo.org>2010-10-27 12:34:34 -0700
commitd3c6bd51c36b9f0bdda699ae4e073ef57c51d02c (patch)
treec83e00613c3ffd3ec4e8e2794830cc6fb83f83cf /bin
parentcc6ca3f87d6173008b55148aa3fba137340c3372 (diff)
downloadportage-d3c6bd51c36b9f0bdda699ae4e073ef57c51d02c.tar.gz
portage-d3c6bd51c36b9f0bdda699ae4e073ef57c51d02c.tar.bz2
portage-d3c6bd51c36b9f0bdda699ae4e073ef57c51d02c.zip
debug-print: don't stat $T during depend phasev2.1.9.23
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ebuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index 4b831ef32..c6bb57e6e 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -1267,7 +1267,7 @@ dyn_help() {
debug-print() {
# if $T isn't defined, we're in dep calculation mode and
# shouldn't do anything
- [[ ! -d ${T} || ${#} -eq 0 ]] && return 0
+ [[ $EBUILD_PHASE = depend || ! -d ${T} || ${#} -eq 0 ]] && return 0
if [[ ${ECLASS_DEBUG_OUTPUT} == on ]]; then
printf 'debug: %s\n' "${@}" >&2