diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-05-23 07:48:41 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-05-23 11:26:39 +0100 |
commit | d7748e6390e2e8c4a55856f53bd53f1cada181bf (patch) | |
tree | 31e3a5d475920e467d3cb322e7103498a5e89724 | |
parent | dfa482f1998f8a398d8d7e7c8fdc2afa9eb44d90 (diff) | |
download | poky-d7748e6390e2e8c4a55856f53bd53f1cada181bf.tar.gz |
useradd-example: Fix S = WORKDIR reference
Update not to use S = WORKDIR after that was no longer allowed.
(From OE-Core rev: 50f78cb9de68cd4317f34321dfdb06d72ce5d3c6)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta-skeleton/recipes-skeleton/useradd/useradd-example.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-skeleton/recipes-skeleton/useradd/useradd-example.bb b/meta-skeleton/recipes-skeleton/useradd/useradd-example.bb index 8437a5a774..b0d96e7f71 100644 --- a/meta-skeleton/recipes-skeleton/useradd/useradd-example.bb +++ b/meta-skeleton/recipes-skeleton/useradd/useradd-example.bb | |||
@@ -9,7 +9,8 @@ SRC_URI = "file://file1 \ | |||
9 | file://file3 \ | 9 | file://file3 \ |
10 | file://file4" | 10 | file://file4" |
11 | 11 | ||
12 | S = "${WORKDIR}" | 12 | S = "${WORKDIR}/sources" |
13 | UNPACKDIR = "${S}" | ||
13 | 14 | ||
14 | PACKAGES =+ "${PN}-user3" | 15 | PACKAGES =+ "${PN}-user3" |
15 | 16 | ||