diff options
author | Konrad Weihmann <kweihmann@witekio.com> | 2023-01-16 08:21:47 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-09-08 09:08:54 -0700 |
commit | df70156857344621fbf97b9066a5197c04b17ec9 (patch) | |
tree | 82986ee9e15904271340ce2242302fd3e66740ad /recipes-devtools/clang/llvm-project-source.inc | |
parent | ae8fd7c99f57bbfc8d1247a458710e3051b2fab0 (diff) | |
download | meta-clang-df70156857344621fbf97b9066a5197c04b17ec9.tar.gz |
llvm-project-source: fix create-spdx handling
as the recipe populates the shared source tree as part of
do_patch, but create-spdx does only wait for do_unpack.
Add an explicit dependency to wait to avoid race conditions
Signed-off-by: Konrad Weihmann <kweihmann@witekio.com>
(cherry picked from commit dc95c5ee548526c615e8ee740a00c93abbe5da1a)
Diffstat (limited to 'recipes-devtools/clang/llvm-project-source.inc')
-rw-r--r-- | recipes-devtools/clang/llvm-project-source.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/recipes-devtools/clang/llvm-project-source.inc b/recipes-devtools/clang/llvm-project-source.inc index 4afd1bb..f7b4da0 100644 --- a/recipes-devtools/clang/llvm-project-source.inc +++ b/recipes-devtools/clang/llvm-project-source.inc | |||
@@ -86,3 +86,5 @@ python add_distro_vendor() { | |||
86 | } | 86 | } |
87 | 87 | ||
88 | do_patch[postfuncs] += "add_distro_vendor" | 88 | do_patch[postfuncs] += "add_distro_vendor" |
89 | do_create_spdx[depends] += "${PN}:do_patch" | ||
90 | |||