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]

(From OE-Core rev: b457e0b028418260aee25858b8af8938dd038fac)

Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Alejandro Hernandez 2015-01-27 17:36:59 -06:00 committed by Richard Purdie
parent f14e96a9cc
commit 57647c9cbb
1 changed files with 1 additions and 1 deletions

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