From: Zac Medico Date: Mon, 4 Aug 2008 04:57:07 +0000 (-0000) Subject: Make the status display say "Emerging" and "Emerging binary" instead of X-Git-Tag: v2.2_rc7~55 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=d75a216ede563f45e5097ce9d75f8b752b26e21a;p=portage.git Make the status display say "Emerging" and "Emerging binary" instead of "Building" and "Extracting". Thanks to Joe Peterson for the suggestion (including extra newlines from previous commit). svn path=/main/trunk/; revision=11325 --- 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"