summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-04-25 17:31:10 +0000
committerZac Medico <zmedico@gentoo.org>2008-04-25 17:31:10 +0000
commitaeae6088bf4e43f9c639df852c58ff58f2094588 (patch)
tree8f6438a7dc2c382f23b2a57f4db83c4dbeb7e7ff /bin
parentbab1a03a17ba928fbf76743758ad0c749a573936 (diff)
downloadportage-aeae6088bf4e43f9c639df852c58ff58f2094588.tar.gz
portage-aeae6088bf4e43f9c639df852c58ff58f2094588.tar.bz2
portage-aeae6088bf4e43f9c639df852c58ff58f2094588.zip
Don't show "world" twice in the xterm titles. Thanks to armin76 for reporting.
svn path=/main/branches/2.1.2/; revision=9974
Diffstat (limited to 'bin')
-rwxr-xr-xbin/emerge4
1 files changed, 3 insertions, 1 deletions
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)