lib/oe/terminal: set workdir for konsole terminal

It seems that if the --workdir option is not set konsole does open in the users
home directory. By setting --workdir . konsole opens in the recipes work
directory. This is the same behavior as observed for other consoles.
(Tested with Konsole 2.14.2 on Debian Jessie).

(From OE-Core rev: bd06944249c3de3f629c013e14f446464441c4da)

Signed-off-by: Pascal Bach <pascal.bach@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Pascal Bach 2016-02-12 16:06:13 +01:00 committed by Richard Purdie
parent 03e1950f55
commit 36b43b233c
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ class Terminology(XTerminal):
priority = 2
class Konsole(XTerminal):
command = 'konsole --nofork -p tabtitle="{title}" -e {command}'
command = 'konsole --nofork --workdir . -p tabtitle="{title}" -e {command}'
priority = 2
def __init__(self, sh_cmd, title=None, env=None, d=None):