summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorAndre McCurdy <andre.mccurdy@entropic.com>2013-07-29 10:59:44 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-08-12 13:14:19 +0100
commitff4e1cd02137272f555649e08267681125d69ba1 (patch)
tree36c91f4afffe171db4344b05d5f59505f1f1c790 /meta
parentb4ba3269102424b614d91ca8be10501176042f62 (diff)
downloadpoky-ff4e1cd02137272f555649e08267681125d69ba1.tar.gz
lib/oe/terminal.py: add support for MATE desktop terminals
A simple clone of the corresponding Gnome class. Without this, devshell fails completely on a default installation of MATE desktop Linux Mint 15. (From OE-Core master rev: 8cc078a9c679845464c59028f584d7aba098cc1f) (From OE-Core rev: 6abc94f00daa04d8b180ef2242add19d3da2e043) Signed-off-by: Andre McCurdy <andre.mccurdy@entropic.com> Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/lib/oe/terminal.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/lib/oe/terminal.py b/meta/lib/oe/terminal.py
index 66197a88dd..1ae6a11b20 100644
--- a/meta/lib/oe/terminal.py
+++ b/meta/lib/oe/terminal.py
@@ -55,6 +55,10 @@ class Gnome(XTerminal):
55 command = 'gnome-terminal --disable-factory -t "{title}" -x {command}' 55 command = 'gnome-terminal --disable-factory -t "{title}" -x {command}'
56 priority = 2 56 priority = 2
57 57
58class Mate(XTerminal):
59 command = 'mate-terminal --disable-factory -t "{title}" -x {command}'
60 priority = 2
61
58class Xfce(XTerminal): 62class Xfce(XTerminal):
59 command = 'Terminal -T "{title}" -e "{command}"' 63 command = 'Terminal -T "{title}" -e "{command}"'
60 priority = 2 64 priority = 2