[oe-commits] Alejandro Hernandez : terminal.py: fixes launching multiple windows of gnome-terminal

git at git.openembedded.org git at git.openembedded.org
Tue Feb 3 14:54:17 UTC 2015


Module: openembedded-core.git
Branch: master
Commit: b457e0b028418260aee25858b8af8938dd038fac
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=b457e0b028418260aee25858b8af8938dd038fac

Author: Alejandro Hernandez <alejandro.hernandez at linux.intel.com>
Date:   Tue Jan 27 17:36:59 2015 -0600

terminal.py: fixes launching multiple windows of gnome-terminal

When resolving a patch, a new process of gnome-terminal
is created for every patch to be resolved, it "waits"
for the previous one to end, instead of launching
multiple windows at the same time.

[YOCTO #7254]

Signed-off-by: Alejandro Hernandez <alejandro.hernandez at linux.intel.com>
Signed-off-by: Ross Burton <ross.burton at intel.com>

---

 meta/lib/oe/terminal.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oe/terminal.py b/meta/lib/oe/terminal.py
index 0a623c7..273590b 100644
--- a/meta/lib/oe/terminal.py
+++ b/meta/lib/oe/terminal.py
@@ -52,7 +52,7 @@ class XTerminal(Terminal):
             raise UnsupportedTerminal(self.name)
 
 class Gnome(XTerminal):
-    command = 'gnome-terminal -t "{title}" -x {command}'
+    command = 'gnome-terminal -t "{title}" --disable-factory -x {command}'
     priority = 2
 
 class Mate(XTerminal):



More information about the Openembedded-commits mailing list