summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/terminal.py
diff options
context:
space:
mode:
authorDavis, Michael <michael.davis@essvote.com>2016-10-17 15:57:15 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-10-28 16:15:18 +0100
commite66f5eabed5ba7778e80026bc918e943c6d70518 (patch)
tree0d05f0f64a9daed94585bc81c51f88361c47c55f /meta/lib/oe/terminal.py
parente02f0f1cb12a1a6e473889bd7e6ddf8b68939f9d (diff)
downloadpoky-e66f5eabed5ba7778e80026bc918e943c6d70518.tar.gz
terminal.py: Add compatiblity for konsole 16.08.1
Konsole has dropped support for the nofork flag. It has been replaced with the seperate flag. (From OE-Core rev: f0b193b63d4c468c3aa58e15ef5a991e04b9b9a2) Signed-off-by: Michael Davis <michael.davis@essvote.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/terminal.py')
-rw-r--r--meta/lib/oe/terminal.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/lib/oe/terminal.py b/meta/lib/oe/terminal.py
index 3901ad3f26..7446c44c49 100644
--- a/meta/lib/oe/terminal.py
+++ b/meta/lib/oe/terminal.py
@@ -97,7 +97,7 @@ class Terminology(XTerminal):
97 priority = 2 97 priority = 2
98 98
99class Konsole(XTerminal): 99class Konsole(XTerminal):
100 command = 'konsole --nofork --workdir . -p tabtitle="{title}" -e {command}' 100 command = 'konsole --separate --workdir . -p tabtitle="{title}" -e {command}'
101 priority = 2 101 priority = 2
102 102
103 def __init__(self, sh_cmd, title=None, env=None, d=None): 103 def __init__(self, sh_cmd, title=None, env=None, d=None):
@@ -106,6 +106,9 @@ class Konsole(XTerminal):
106 if vernum and LooseVersion(vernum) < '2.0.0': 106 if vernum and LooseVersion(vernum) < '2.0.0':
107 # Konsole from KDE 3.x 107 # Konsole from KDE 3.x
108 self.command = 'konsole -T "{title}" -e {command}' 108 self.command = 'konsole -T "{title}" -e {command}'
109 elif vernum and LooseVersion(vernum) < '16.08.1':
110 # Konsole pre 16.08.01 Has nofork
111 self.command = 'konsole --nofork --workdir . -p tabtitle="{title}" -e {command}'
109 XTerminal.__init__(self, sh_cmd, title, env, d) 112 XTerminal.__init__(self, sh_cmd, title, env, d)
110 113
111class XTerm(XTerminal): 114class XTerm(XTerminal):