diff options
| author | Andre McCurdy <armccurdy@gmail.com> | 2017-08-25 13:36:31 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-09-11 22:15:59 +0100 |
| commit | b1ffdf653c96dd80edf63b6377217230e5de505a (patch) | |
| tree | 4e81a5f0f92f65adcdee62eccfa0401654d469ea | |
| parent | 452164e7d6375db636623634783bd254848e9544 (diff) | |
| download | poky-b1ffdf653c96dd80edf63b6377217230e5de505a.tar.gz | |
terminal.py: fix devshell with mate-terminal
Without the --disable-factory option, mate-terminal fails to start
with the error:
| There was an error creating the child process for this terminal
| Failed to execute child process "oe-gnome-terminal-phonehome" (No such file or directory)
The --disable-factory option was removed by:
http://git.openembedded.org/openembedded-core/commit/?id=e8dca725ed8211a874472300a3ed50e494039ab9
apparently based on an assuption that mate-terminal continues to
track gnome-terminal since forking from it. However, based on the
mate-terminal man page in the upstream master branch, the option is
still supported:
https://github.com/mate-desktop/mate-terminal
(From OE-Core rev: c7f769bd400756d180abf80dbfdf4ed2703fab60)
(From OE-Core rev: 764159600a202d1f0c2f0217c7bf7b55348a2f5d)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.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 714772f741..89ddb4671a 100644 --- a/meta/lib/oe/terminal.py +++ b/meta/lib/oe/terminal.py | |||
| @@ -65,7 +65,7 @@ class Gnome(XTerminal): | |||
| 65 | XTerminal.__init__(self, sh_cmd, title, env, d) | 65 | XTerminal.__init__(self, sh_cmd, title, env, d) |
| 66 | 66 | ||
| 67 | class Mate(XTerminal): | 67 | class Mate(XTerminal): |
| 68 | command = 'mate-terminal -t "{title}" -x {command}' | 68 | command = 'mate-terminal --disable-factory -t "{title}" -x {command}' |
| 69 | priority = 2 | 69 | priority = 2 |
| 70 | 70 | ||
| 71 | class Xfce(XTerminal): | 71 | class Xfce(XTerminal): |
