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:42 +0000 |
commit | b457e0b028418260aee25858b8af8938dd038fac (patch) | |
tree | 9d7822627ee45d20a97507697b3ae90899276c24 /meta/lib | |
parent | 039c57257c4180b0688fc2ec1b03948276009b04 (diff) | |
download | openembedded-core-b457e0b028418260aee25858b8af8938dd038fac.tar.gz openembedded-core-b457e0b028418260aee25858b8af8938dd038fac.tar.bz2 openembedded-core-b457e0b028418260aee25858b8af8938dd038fac.zip |
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 <alejandro.hernandez@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/lib')
-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): 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): |