diff options
author | Konrad Weihmann <kweihmann@witekio.com> | 2023-01-16 08:21:47 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-10-27 08:58:04 -0700 |
commit | 2d3f9dd9dc2c1ee332cc45ada2c0609ade53a645 (patch) | |
tree | 5741c81b4e9c0d1f0f2f213547ce5bca14390aa4 | |
parent | 58bc6d3eef7d006812c45da65bf3267cc20e75fb (diff) | |
download | meta-clang-2d3f9dd9dc2c1ee332cc45ada2c0609ade53a645.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>
-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 d7b91e0..1256763 100644 --- a/recipes-devtools/clang/llvm-project-source.inc +++ b/recipes-devtools/clang/llvm-project-source.inc | |||
@@ -54,3 +54,5 @@ python add_distro_vendor() { | |||
54 | } | 54 | } |
55 | 55 | ||
56 | do_patch[postfuncs] += "add_distro_vendor" | 56 | do_patch[postfuncs] += "add_distro_vendor" |
57 | do_create_spdx[depends] += "${PN}:do_patch" | ||
58 | |||