diff options
author | Kory Maincent <kory.maincent@bootlin.com> | 2022-01-24 12:45:23 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-01-26 06:27:00 +0000 |
commit | 15324dd951e25219e5f0d91f33afee4bc22b9d62 (patch) | |
tree | bfc32333d2cab21a8f16b9e58beb873ec16fe64e /meta/recipes-support | |
parent | fa0db034d6255f32f0a998d296fd60dc7df65d27 (diff) | |
download | poky-15324dd951e25219e5f0d91f33afee4bc22b9d62.tar.gz |
icu: fix make_icudata dependencies
The make_icudata task is set before the configure task then the
dependencies for this task are not populate yet.
Fixed it by adding do_prepare_recipe_sysroot task dependency to the
make_icudata task.
(From OE-Core rev: c134f62062a6359d2d5831ba4cb9694035e4f25a)
Signed-off-by: Kory Maincent <kory.maincent@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/icu/icu_70.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/icu/icu_70.1.bb b/meta/recipes-support/icu/icu_70.1.bb index 0988ae8b8e..dd684fe5b9 100644 --- a/meta/recipes-support/icu/icu_70.1.bb +++ b/meta/recipes-support/icu/icu_70.1.bb | |||
@@ -147,4 +147,4 @@ do_make_icudata() { | |||
147 | : | 147 | : |
148 | } | 148 | } |
149 | 149 | ||
150 | addtask make_icudata before do_configure after do_patch | 150 | addtask make_icudata before do_configure after do_patch do_prepare_recipe_sysroot |