diff options
author | Konrad Weihmann <kweihmann@witekio.com> | 2023-01-16 08:21:47 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-01-16 21:24:18 -0800 |
commit | dc95c5ee548526c615e8ee740a00c93abbe5da1a (patch) | |
tree | 3ff68a14421c07ff9bd1c6d7a8bcb3fbe713a086 /recipes-devtools/clang/llvm-project-source.inc | |
parent | bc8388c622c62cde24512d5b4473ede1f5710348 (diff) | |
download | meta-clang-dc95c5ee548526c615e8ee740a00c93abbe5da1a.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>
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 | |||