diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-03 10:09:49 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-03 15:51:37 +0100 |
commit | 85ff4ffb8e8f1a5587a4f2c31642cdbe6c801f98 (patch) | |
tree | 5d58931cba62ab3094b37efff9dfdd9043cd50b4 /meta | |
parent | 66412abc00ae1db1d66824a55f18ebbf90b31ab5 (diff) | |
download | poky-85ff4ffb8e8f1a5587a4f2c31642cdbe6c801f98.tar.gz |
populate_sdk_ext: Exclude BBTASKDEPDATA from task signature
Otherwise the task hash changes between server and worker context
leading to changing task checksums. The dependency data here is
tracked by other pieces of the signature.
(From OE-Core rev: 1962571a7358fb9c9af2d6cfd1a01673b0d18193)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index 2bbd181208..4ad190b2c0 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass | |||
@@ -51,6 +51,8 @@ def get_sdk_install_targets(d): | |||
51 | 51 | ||
52 | return sdk_install_targets | 52 | return sdk_install_targets |
53 | 53 | ||
54 | get_sdk_install_targets[vardepsexclude] = "BB_TASKDEPDATA" | ||
55 | |||
54 | OE_INIT_ENV_SCRIPT ?= "oe-init-build-env" | 56 | OE_INIT_ENV_SCRIPT ?= "oe-init-build-env" |
55 | 57 | ||
56 | # The files from COREBASE that you want preserved in the COREBASE copied | 58 | # The files from COREBASE that you want preserved in the COREBASE copied |