diff options
author | Alejandro Hernandez <alejandro.hernandez@linux.intel.com> | 2015-01-27 17:36:59 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-03 14:53:53 +0000 |
commit | 57647c9cbb56c7f115ebd5eeaee3f6e90a80ed8b (patch) | |
tree | f81d16bac87cef709b79c716b47ae2fefb062a01 | |
parent | f14e96a9cc7b0be01b31e0cff032181482b45751 (diff) | |
download | poky-57647c9cbb56c7f115ebd5eeaee3f6e90a80ed8b.tar.gz |
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>
-rw-r--r-- | meta/lib/oe/terminal.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
52 | raise UnsupportedTerminal(self.name) | 52 | raise UnsupportedTerminal(self.name) |
53 | 53 | ||
54 | class Gnome(XTerminal): | 54 | class Gnome(XTerminal): |
55 | command = 'gnome-terminal -t "{title}" -x {command}' | 55 | command = 'gnome-terminal -t "{title}" --disable-factory -x {command}' |
56 | priority = 2 | 56 | priority = 2 |
57 | 57 | ||
58 | class Mate(XTerminal): | 58 | class Mate(XTerminal): |