From: Zac Medico Date: Fri, 25 Apr 2008 17:31:10 +0000 (-0000) Subject: Don't show "world" twice in the xterm titles. Thanks to armin76 for reporting. X-Git-Tag: v2.1.5~145 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=aeae6088bf4e43f9c639df852c58ff58f2094588;p=portage.git Don't show "world" twice in the xterm titles. Thanks to armin76 for reporting. svn path=/main/branches/2.1.2/; revision=9974 --- diff --git a/bin/emerge b/bin/emerge index a52d71407..e2e709078 100755 --- a/bin/emerge +++ b/bin/emerge @@ -8153,7 +8153,9 @@ def emerge_main(): myelogstr="" if myopts: myelogstr=" ".join(myopts) - if myaction: + if myaction and myaction != "world": + # Exclude "world" here because myfiles + # contains a duplicate. myelogstr+=" "+myaction if myfiles: myelogstr+=" "+" ".join(myfiles)