diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-11-27 23:01:35 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-11-27 23:01:35 +0000 |
commit | 39f550ce1d06d7d840958e12f0635b3007701220 (patch) | |
tree | f44f193d819433672745cfe2adc90c5d3bb6af27 | |
parent | f204903b79a577b96b672af7bcbdddb8e5fd1cf9 (diff) | |
download | portage-39f550ce1d06d7d840958e12f0635b3007701220.tar.gz portage-39f550ce1d06d7d840958e12f0635b3007701220.tar.bz2 portage-39f550ce1d06d7d840958e12f0635b3007701220.zip |
Bug #294886 - Show some basic info at the beginning of the build log,
including USE flags.
svn path=/main/trunk/; revision=14907
-rwxr-xr-x | bin/ebuild.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index c99e54022..1a1f3e103 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -2056,6 +2056,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. |