diff options
author | Markus Volk <f_l_k@t-online.de> | 2024-05-27 14:23:37 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-05-28 09:34:03 -0700 |
commit | 6193a1a12f8c7a8bc6c1e78e90ada8bea0f8927f (patch) | |
tree | e6657a26edce2cd404f03d664e51b18a964944a9 | |
parent | 2a18bc7d98bd2d9f85ab0604bcc1aeac88f48682 (diff) | |
download | meta-openembedded-6193a1a12f8c7a8bc6c1e78e90ada8bea0f8927f.tar.gz |
unicode-ucd: fix UNPACKDIR conversion leftovers
this avoids:
WARNING: unicode-ucd-14.0.0-r0 do_unpack: unicode-ucd: the directory ${WORKDIR}/${BP}
(/home/flk/poky/build-hypr/tmp/work/all-poky-linux/unicode-ucd/14.0.0/unicode-ucd-14.0.0)
pointed to by the S variable doesn't exist - please set S within the recipe to point to
where the source has been unpacked to
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/unicode-ucd/unicode-ucd_14.0.0.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/unicode-ucd/unicode-ucd_14.0.0.bb b/meta-oe/recipes-support/unicode-ucd/unicode-ucd_14.0.0.bb index 0c8a10e0ef..026d4ffe02 100644 --- a/meta-oe/recipes-support/unicode-ucd/unicode-ucd_14.0.0.bb +++ b/meta-oe/recipes-support/unicode-ucd/unicode-ucd_14.0.0.bb | |||
@@ -12,6 +12,9 @@ SRC_URI[ucd-license.sha256sum] = "f7830d126f59d83842565d3dddedc79db4ca978ed52aee | |||
12 | 12 | ||
13 | inherit allarch | 13 | inherit allarch |
14 | 14 | ||
15 | S = "${WORKDIR}/sources" | ||
16 | UNPACKDIR = "${S}" | ||
17 | |||
15 | do_configure[noexec] = "1" | 18 | do_configure[noexec] = "1" |
16 | 19 | ||
17 | do_install() { | 20 | do_install() { |