diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-12-21 09:04:59 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-15 15:51:40 +0000 |
commit | 95cc641ec3ad9b29f9ae538b234f7a36dcb4aa42 (patch) | |
tree | d0aea14cce0ae46ce95ebee9eeef7a54d092615f /meta | |
parent | 84d48acb01db0bc87d90c11832b56bcbef9dd0f2 (diff) | |
download | poky-95cc641ec3ad9b29f9ae538b234f7a36dcb4aa42.tar.gz |
buildhistory: fix not recording SDK information
After OE-Core revision baa4e43a29e45df17eaa3456acc179b08d571db6 we lost
recording SDK the contents in buildhistory. This was due to the
SDK_POSTPROCESS_COMMAND variable being set with = in
populate_sdk_base.bbclass which overwrote any value set with += in
buildhistory.bbclass; to fix it, use _append in buildhistory.bbclass
instead.
Fixes [YOCTO #8839].
(From OE-Core master rev: 11d1aa82ef4a00051e0a50a87a1efed1c50c73b5)
(From OE-Core rev: 36d4b0903890bc793608759b3351a5de4229de11)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/buildhistory.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass index 4db0441993..5e2581f88a 100644 --- a/meta/classes/buildhistory.bbclass +++ b/meta/classes/buildhistory.bbclass | |||
@@ -521,7 +521,7 @@ POPULATE_SDK_POST_TARGET_COMMAND_append = " buildhistory_list_installed_sdk_targ | |||
521 | POPULATE_SDK_POST_HOST_COMMAND_append = " buildhistory_list_installed_sdk_host ;\ | 521 | POPULATE_SDK_POST_HOST_COMMAND_append = " buildhistory_list_installed_sdk_host ;\ |
522 | buildhistory_get_sdk_installed_host ; " | 522 | buildhistory_get_sdk_installed_host ; " |
523 | 523 | ||
524 | SDK_POSTPROCESS_COMMAND += "buildhistory_get_sdkinfo ; " | 524 | SDK_POSTPROCESS_COMMAND_append = " buildhistory_get_sdkinfo ; " |
525 | 525 | ||
526 | def buildhistory_get_build_id(d): | 526 | def buildhistory_get_build_id(d): |
527 | if d.getVar('BB_WORKERCONTEXT', True) != '1': | 527 | if d.getVar('BB_WORKERCONTEXT', True) != '1': |