From d7748e6390e2e8c4a55856f53bd53f1cada181bf Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 23 May 2024 07:48:41 +0100 Subject: [PATCH] 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 --- meta-skeleton/recipes-skeleton/useradd/useradd-example.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 \ file://file3 \ file://file4" -S = "${WORKDIR}" +S = "${WORKDIR}/sources" +UNPACKDIR = "${S}" PACKAGES =+ "${PN}-user3"