summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-11-27 23:02:57 +0000
committerZac Medico <zmedico@gentoo.org>2009-11-27 23:02:57 +0000
commite11f6988810e40ced3f2a95dadfbab121a582a6f (patch)
treec3ea958299c6da0b31c7fa2df92fd230153872d8
parentHandle a KeyError in depgraph._ordered_tree_display(), reported on irc by (diff)
downloadportage-multirepo-e11f6988810e40ced3f2a95dadfbab121a582a6f.tar.gz
portage-multirepo-e11f6988810e40ced3f2a95dadfbab121a582a6f.tar.bz2
portage-multirepo-e11f6988810e40ced3f2a95dadfbab121a582a6f.zip
Bug #294886 - Show some basic info at the beginning of the build log,
including USE flags. (trunk r14907) svn path=/main/branches/2.1.7/; revision=14908
-rwxr-xr-xbin/ebuild.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index 49f2ee72..0e497b55 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -2048,6 +2048,11 @@ ebuild_main() {
export SANDBOX_ON="0"
;;
help|pretend|setup|preinst)
+ if [[ $EBUILD_SH_ARGS = setup ]] ; then
+ einfo "CPV: $CATEGORY/$PF"
+ einfo "REPO: $PORTAGE_REPO_NAME"
+ einfo "USE: $USE"
+ fi
#pkg_setup needs to be out of the sandbox for tmp file creation;
#for example, awking and piping a file in /tmp requires a temp file to be created
#in /etc. If pkg_setup is in the sandbox, both our lilo and apache ebuilds break.