summaryrefslogtreecommitdiffstats
path: root/meta/classes/terminal.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/terminal.bbclass')
-rw-r--r--meta/classes/terminal.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/terminal.bbclass b/meta/classes/terminal.bbclass
index 3cfc84b444..2cd6f4c34f 100644
--- a/meta/classes/terminal.bbclass
+++ b/meta/classes/terminal.bbclass
@@ -25,7 +25,7 @@ def oe_terminal(command, title, d):
25 bb.fatal('Devshell usage disabled with OE_TERMINAL') 25 bb.fatal('Devshell usage disabled with OE_TERMINAL')
26 elif terminal != 'auto': 26 elif terminal != 'auto':
27 try: 27 try:
28 oe.terminal.spawn(terminal, command, title) 28 oe.terminal.spawn(terminal, command, title, None, d)
29 return 29 return
30 except oe.terminal.UnsupportedTerminal: 30 except oe.terminal.UnsupportedTerminal:
31 bb.warn('Unsupported terminal "%s", defaulting to "auto"' % 31 bb.warn('Unsupported terminal "%s", defaulting to "auto"' %
@@ -34,7 +34,7 @@ def oe_terminal(command, title, d):
34 bb.fatal('Unable to spawn terminal %s: %s' % (terminal, exc)) 34 bb.fatal('Unable to spawn terminal %s: %s' % (terminal, exc))
35 35
36 try: 36 try:
37 oe.terminal.spawn_preferred(command, title) 37 oe.terminal.spawn_preferred(command, title, None, d)
38 except oe.terminal.NoSupportedTerminals: 38 except oe.terminal.NoSupportedTerminals:
39 bb.fatal('No valid terminal found, unable to open devshell') 39 bb.fatal('No valid terminal found, unable to open devshell')
40 except oe.terminal.ExecutionError as exc: 40 except oe.terminal.ExecutionError as exc: