]> code.ossystems Code Review - openembedded-core.git/commitdiff
terminal.py: fixes launching multiple windows of gnome-terminal
authorAlejandro Hernandez <alejandro.hernandez@linux.intel.com>
Tue, 27 Jan 2015 23:36:59 +0000 (17:36 -0600)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 3 Feb 2015 14:53:42 +0000 (14:53 +0000)
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@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/lib/oe/terminal.py

index 0a623c75b1e57451ec0eea5675f56ec67cf138ab..273590bb6b7f556daf0cbdb07365135b0156fd6a 100644 (file)
@@ -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):