summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-06-27 09:57:52 +0000
committerZac Medico <zmedico@gentoo.org>2007-06-27 09:57:52 +0000
commit34554e7b5657e671f7abf7debc86cbe8aacb081b (patch)
treee8be1748b8f952e4a76d315e32e51a328373f3f9 /bin
parentaa4c91af4ce37998380f6497ecf8c31a483eaec8 (diff)
downloadportage-34554e7b5657e671f7abf7debc86cbe8aacb081b.tar.gz
portage-34554e7b5657e671f7abf7debc86cbe8aacb081b.tar.bz2
portage-34554e7b5657e671f7abf7debc86cbe8aacb081b.zip
Format $EBUILD_OVERLAY_ECLASSES output more like it was before. (trunk r7055)
svn path=/main/branches/2.1.2/; revision=7056
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ebuild.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index 332713e74..a3c591f87 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -294,7 +294,11 @@ diefunc() {
[ -n "${PORTAGE_LOG_FILE}" ] && \
eerror "A complete build log is located at '${PORTAGE_LOG_FILE}'."
if [ -n "${EBUILD_OVERLAY_ECLASSES}" ] ; then
- eerror "This ebuild used eclasses from overlays: ${EBUILD_OVERLAY_ECLASSES}"
+ eerror "This ebuild used the following eclasses from overlays:"
+ local x
+ for x in ${EBUILD_OVERLAY_ECLASSES} ; do
+ eerror " ${x}"
+ done
fi
if [ ${EBUILD#${PORTDIR}/} == ${EBUILD} ] ; then
local overlay=${EBUILD%/*}