The do_preconfigure task performs some string replacements, and the patterns searched by sed are no longer there if they were replaced during a previous (successful) execution.
This means we need to unpack the sources again, and apply the patches, before running do_preconfigure again. Regarding do_patch, it is already handled by the addtask line. However, even if we define a dependency (e.g. with deptask flag) between do_preconfigure and do_unpack, bitbake will not reexecute do_unpack because the stamp is still there. The only workaround I see - not so elegant, yes - is to make sure do_unpack's signature also depends on CLANG_EXTRA_OE_DISTRO and CLANG_EXTRA_OE_VENDORS. Signed-off-by: João Marcos Costa <[email protected]> --- meta/recipes-devtools/clang/llvm-project-source.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-devtools/clang/llvm-project-source.inc b/meta/recipes-devtools/clang/llvm-project-source.inc index 84d4bae0ab..7cc4e1a9f0 100644 --- a/meta/recipes-devtools/clang/llvm-project-source.inc +++ b/meta/recipes-devtools/clang/llvm-project-source.inc @@ -91,4 +91,5 @@ python do_preconfigure() { do_patch[vardepsexclude] += "MULTILIBS MULTILIB_VARIANTS" addtask do_preconfigure after do_patch do_preconfigure[vardeps] += "CLANG_EXTRA_OE_DISTRO CLANG_EXTRA_OE_VENDORS" +do_unpack[vardeps] += "CLANG_EXTRA_OE_DISTRO CLANG_EXTRA_OE_VENDORS" do_create_spdx[depends] += "${PN}:do_preconfigure" -- 2.43.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#239364): https://lists.openembedded.org/g/openembedded-core/message/239364 Mute This Topic: https://lists.openembedded.org/mt/119939357/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
