diff options
author | Pascal Bach <pascal.bach@siemens.com> | 2016-02-12 16:06:13 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-13 08:27:18 +0000 |
commit | bd06944249c3de3f629c013e14f446464441c4da (patch) | |
tree | 86851e047454f25afd02a3fa2af1f01408b1a412 /meta/lib | |
parent | 819541253d63b14bb6a5fd4cafdd2b6fa16f4ca3 (diff) | |
download | openembedded-core-bd06944249c3de3f629c013e14f446464441c4da.tar.gz openembedded-core-bd06944249c3de3f629c013e14f446464441c4da.tar.bz2 openembedded-core-bd06944249c3de3f629c013e14f446464441c4da.zip |
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).
Signed-off-by: Pascal Bach <pascal.bach@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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 1efc06d08e..634daa9033 100644 --- a/meta/lib/oe/terminal.py +++ b/meta/lib/oe/terminal.py @@ -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): |