summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-08-04 04:57:07 +0000
committerZac Medico <zmedico@gentoo.org>2008-08-04 04:57:07 +0000
commitd75a216ede563f45e5097ce9d75f8b752b26e21a (patch)
treea6ef96a1e118ae22e50696e95189e214835c8c56 /pym
parentb34bb6fbc4d12b0b47badeae57a7c5d164ad2c7d (diff)
downloadportage-d75a216ede563f45e5097ce9d75f8b752b26e21a.tar.gz
portage-d75a216ede563f45e5097ce9d75f8b752b26e21a.tar.bz2
portage-d75a216ede563f45e5097ce9d75f8b752b26e21a.zip
Make the status display say "Emerging" and "Emerging binary" instead of
"Building" and "Extracting". Thanks to Joe Peterson <lavajoe> for the suggestion (including extra newlines from previous commit). svn path=/main/trunk/; revision=11325
Diffstat (limited to 'pym')
-rw-r--r--pym/_emerge/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py
index ebbea3a5d..2282ad72a 100644
--- a/pym/_emerge/__init__.py
+++ b/pym/_emerge/__init__.py
@@ -3444,10 +3444,10 @@ class MergeListItem(CompositeTask):
world_atom = self.world_atom
ldpath_mtimes = mtimedb["ldpath"]
- action_desc = "Building"
+ action_desc = "Emerging"
preposition = "for"
if pkg.type_name == "binary":
- action_desc = "Extracting"
+ action_desc += " binary"
if build_opts.fetchonly:
action_desc = "Fetching"