mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
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>
This commit is contained in:
parent
84d48acb01
commit
95cc641ec3
|
|
@ -521,7 +521,7 @@ POPULATE_SDK_POST_TARGET_COMMAND_append = " buildhistory_list_installed_sdk_targ
|
|||
POPULATE_SDK_POST_HOST_COMMAND_append = " buildhistory_list_installed_sdk_host ;\
|
||||
buildhistory_get_sdk_installed_host ; "
|
||||
|
||||
SDK_POSTPROCESS_COMMAND += "buildhistory_get_sdkinfo ; "
|
||||
SDK_POSTPROCESS_COMMAND_append = " buildhistory_get_sdkinfo ; "
|
||||
|
||||
def buildhistory_get_build_id(d):
|
||||
if d.getVar('BB_WORKERCONTEXT', True) != '1':
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user