diff options
Diffstat (limited to 'meta/lib/oe/terminal.py')
-rw-r--r-- | meta/lib/oe/terminal.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oe/terminal.py b/meta/lib/oe/terminal.py index 89ddb4671a..9eb19a2619 100644 --- a/meta/lib/oe/terminal.py +++ b/meta/lib/oe/terminal.py | |||
@@ -292,6 +292,8 @@ def check_terminal_version(terminalName): | |||
292 | vernum = ver.split(' ')[-1] | 292 | vernum = ver.split(' ')[-1] |
293 | if ver.startswith('GNOME Terminal'): | 293 | if ver.startswith('GNOME Terminal'): |
294 | vernum = ver.split(' ')[-1] | 294 | vernum = ver.split(' ')[-1] |
295 | if ver.startswith('MATE Terminal'): | ||
296 | vernum = ver.split(' ')[-1] | ||
295 | if ver.startswith('tmux'): | 297 | if ver.startswith('tmux'): |
296 | vernum = ver.split()[-1] | 298 | vernum = ver.split()[-1] |
297 | return vernum | 299 | return vernum |