diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-20 17:16:25 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-20 17:18:07 +0000 |
commit | 84b549afb46fce7b5cdaa977286aeb2e90d3bfdb (patch) | |
tree | eaf746cc94a35bad5940a26e688c999d7dd389c1 /meta/classes | |
parent | 3d59d0bed756f64d0092caa3892239c779c4a341 (diff) | |
download | openembedded-core-84b549afb46fce7b5cdaa977286aeb2e90d3bfdb.tar.gz openembedded-core-84b549afb46fce7b5cdaa977286aeb2e90d3bfdb.tar.bz2 openembedded-core-84b549afb46fce7b5cdaa977286aeb2e90d3bfdb.zip |
terminal: Exclude BB_ORIGENV from the signatures
devshell was printing a traceback when exiting due to the use of dump_sigs()
being called on the task. This is turn was since this function referenced
BB_ORIGENV. We might as well globally exclude this for now since its a
data store object and cannot be pickled, not would it make sense to do so.
[YOCTO #5683]
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/terminal.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/terminal.bbclass b/meta/classes/terminal.bbclass index efbc4eb9ae..774f0559fb 100644 --- a/meta/classes/terminal.bbclass +++ b/meta/classes/terminal.bbclass @@ -86,3 +86,5 @@ def oe_terminal(command, title, d): bb.fatal('No valid terminal found, unable to open devshell') except oe.terminal.ExecutionError as exc: bb.fatal('Unable to spawn terminal %s: %s' % (terminal, exc)) + +oe_terminal[vardepsexclude] = "BB_ORIGENV" |