summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/terminal.py
diff options
context:
space:
mode:
authorJacob Kroon <jacob.kroon@mikrodidakt.se>2013-12-30 19:17:58 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-01-02 12:56:29 +0000
commit3de579c28d826734315ca631c1e76c03ec7be788 (patch)
tree8b03e880a6791b946b7086729b4bb8bf7b3200ef /meta/lib/oe/terminal.py
parent7774bdf778921e50872c9e3fa6a24d450b057a32 (diff)
downloadpoky-3de579c28d826734315ca631c1e76c03ec7be788.tar.gz
meta/lib/oe/terminal.py: Don't pass non-supported '--disable-factory' flag to gnome-terminal
By default, all GNOME terminals share a single process, reducing memory usage. This can be disabled by starting gnome-terminal with the --disable-factory option However, gnome-terminal in Fedora 20 does no longer support the '--disable-factory' flag, so remove it. As the support for 'mate' terminals was added as a copy of the gnome code in 8cc078a9c679845464c59028f584d7aba098cc1f, remove the flag here aswell. (From OE-Core rev: e8dca725ed8211a874472300a3ed50e494039ab9) Signed-off-by: Jacob Kroon <jacob.kroon@mikrodidakt.se> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/terminal.py')
-rw-r--r--meta/lib/oe/terminal.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oe/terminal.py b/meta/lib/oe/terminal.py
index be2a26bedd..a33abd733d 100644
--- a/meta/lib/oe/terminal.py
+++ b/meta/lib/oe/terminal.py
@@ -52,11 +52,11 @@ class XTerminal(Terminal):
52 raise UnsupportedTerminal(self.name) 52 raise UnsupportedTerminal(self.name)
53 53
54class Gnome(XTerminal): 54class Gnome(XTerminal):
55 command = 'gnome-terminal --disable-factory -t "{title}" -x {command}' 55 command = 'gnome-terminal -t "{title}" -x {command}'
56 priority = 2 56 priority = 2
57 57
58class Mate(XTerminal): 58class Mate(XTerminal):
59 command = 'mate-terminal --disable-factory -t "{title}" -x {command}' 59 command = 'mate-terminal -t "{title}" -x {command}'
60 priority = 2 60 priority = 2
61 61
62class Xfce(XTerminal): 62class Xfce(XTerminal):