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:06 -0800 |
commit | 948822169418346738c017d24c5ebf9b3dbc0099 (patch) | |
tree | 9f439ff312f6d39d7f82c1bbc4d8322e7aa845ca /recipes-devtools/clang/llvm-project-source.inc | |
parent | 73902104e6c8b277caf6bed369c7be6c56fec2ef (diff) | |
download | meta-clang-948822169418346738c017d24c5ebf9b3dbc0099.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 1245d7b..6bcb29f 100644 --- a/recipes-devtools/clang/llvm-project-source.inc +++ b/recipes-devtools/clang/llvm-project-source.inc | |||
@@ -92,3 +92,5 @@ python add_distro_vendor() { | |||
92 | } | 92 | } |
93 | 93 | ||
94 | do_patch[postfuncs] += "add_distro_vendor" | 94 | do_patch[postfuncs] += "add_distro_vendor" |
95 | do_create_spdx[depends] += "${PN}:do_patch" | ||
96 | |||