[OE-core] [PATCH] terminal.py: fixes launching multiple windows of gnome-terminal

Alejandro Hernandez alejandro.hernandez at linux.intel.com
Tue Jan 27 23:36:59 UTC 2015


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>
---
 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):
-- 
1.9.1




More information about the Openembedded-core mailing list