From 0f1aee0d36d94e54af26512cd8f8ebc7a9cc25bd Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Sat, 15 Apr 2023 02:31:25 +0500 Subject: [PATCH] external-toolchain.bbclass: stop overriding S, we need it for debugsrc We need to be able to copy sources from the external toolchain into it in do_unpack, then back out into the install area in do_install. Note that attempts were made to bypass this indirection by having do_package directly copy sources from the external toolchain, and while this did function, it results in pseudo failures breaking the build. Further investigation could be done on this in the future. JIRA: SB-21854 Signed-off-by: Christopher Larson --- classes/external-toolchain.bbclass | 4 ---- 1 file changed, 4 deletions(-) diff --git a/classes/external-toolchain.bbclass b/classes/external-toolchain.bbclass index 7218211..fda5267 100644 --- a/classes/external-toolchain.bbclass +++ b/classes/external-toolchain.bbclass @@ -15,10 +15,6 @@ inherit common-license OVERRIDES =. "external:" -# We don't extract anything which will create S, and we don't want to see the -# warning about it -S = "${WORKDIR}" - # Prebuilt binaries, no need for any default dependencies INHIBIT_DEFAULT_DEPS = "1"