summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2024-05-23 07:48:41 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-05-23 11:26:39 +0100
commitd7748e6390e2e8c4a55856f53bd53f1cada181bf (patch)
tree31e3a5d475920e467d3cb322e7103498a5e89724
parentdfa482f1998f8a398d8d7e7c8fdc2afa9eb44d90 (diff)
downloadpoky-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.bb3
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
12S = "${WORKDIR}" 12S = "${WORKDIR}/sources"
13UNPACKDIR = "${S}"
13 14
14PACKAGES =+ "${PN}-user3" 15PACKAGES =+ "${PN}-user3"
15 16