From b457e0b028418260aee25858b8af8938dd038fac Mon Sep 17 00:00:00 2001 From: Alejandro Hernandez Date: Tue, 27 Jan 2015 17:36:59 -0600 Subject: 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 Signed-off-by: Ross Burton --- 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 0a623c75b1..273590bb6b 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): -- cgit 1.2.3-korg