From: Richard Purdie Date: Thu, 23 May 2024 06:48:41 +0000 (+0100) Subject: useradd-example: Fix S = WORKDIR reference X-Git-Tag: uninative-4.6~493 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50f78cb9de68cd4317f34321dfdb06d72ce5d3c6;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git useradd-example: Fix S = WORKDIR reference Update not to use S = WORKDIR after that was no longer allowed. Signed-off-by: Richard Purdie --- diff --git a/meta-skeleton/recipes-skeleton/useradd/useradd-example.bb b/meta-skeleton/recipes-skeleton/useradd/useradd-example.bb index 8437a5a7745..b0d96e7f711 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"