From: Richard Purdie Date: Fri, 2 Nov 2012 11:23:33 +0000 (+0000) Subject: terminal: Ensure existing environment exports are preserved in devshell X-Git-Tag: 2015-4~8753 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=f2dfc50bdf403719d40d04488245fd37655b5480;p=openembedded-core.git terminal: Ensure existing environment exports are preserved in devshell After recent changes to terminal.bbclass, variables like PATH were no longer preserved within the devshell. This change ensures they are inherited into the environment of devshell and PATH for example has the correct values. Signed-off-by: Richard Purdie --- diff --git a/meta/classes/terminal.bbclass b/meta/classes/terminal.bbclass index 4a3ddef04f..cec854d54a 100644 --- a/meta/classes/terminal.bbclass +++ b/meta/classes/terminal.bbclass @@ -17,6 +17,9 @@ def oe_terminal(command, title, d): env = dict() + for v in os.environ: + env[v] = os.environ[v] + for export in oe.data.typed_value('OE_TERMINAL_EXPORTS', d): value = d.getVar(export, True) if value is not None: