mirror of
https://git.yoctoproject.org/poky
synced 2026-05-05 20:27:58 +02:00
multilib_global: Fix multilib rebuild issue
Building lttng-modules for a "lib32" multilib, then changing to a "lib64" multilib with "lib32" removed doesn't rebuild lttng-modules. This is due to the multilib pieces in RPROVIDES being added after RecipeParsed which is after the signatures are generated. Changing this to RecipeTaskPreProcess allows the multilib components to be accounted for correctly in the task hashes. This addresses failures on the autobuilder seen in lib64-core-image-sato-sdk builds where lttng-modules was being reused from qemux86 world build's lib32 version. (From OE-Core rev: a8dc13d4e4e34b061be5c2dd71f26cc0ad92a72e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -202,5 +202,4 @@ python multilib_virtclass_handler_global () {
|
||||
}
|
||||
|
||||
addhandler multilib_virtclass_handler_global
|
||||
multilib_virtclass_handler_global[eventmask] = "bb.event.RecipeParsed"
|
||||
|
||||
multilib_virtclass_handler_global[eventmask] = "bb.event.RecipeTaskPreProcess"
|
||||
|
||||
Reference in New Issue
Block a user