From c62dda1f0da64ab5a4fd9ef2d695693a9b44b9ba Mon Sep 17 00:00:00 2001 From: Max Krummenacher Date: Tue, 28 May 2024 11:13:42 +0200 Subject: [PATCH] fsl-rc-local: Fix S = WORKDIR reference Setting `S = ${WORKDIR}` is no longer allowed. Use the the default setting of S and move the sources accordingly. Compare wit OE-core commit 32cba1cc91 ("insane: Error for S == WORKDIR") Fixes: ERROR: .bb: Using S = ${WORKDIR} is no longer supported Signed-off-by: Max Krummenacher --- recipes-fsl/fsl-rc-local/fsl-rc-local.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-fsl/fsl-rc-local/fsl-rc-local.bb b/recipes-fsl/fsl-rc-local/fsl-rc-local.bb index b30de58..d802785 100644 --- a/recipes-fsl/fsl-rc-local/fsl-rc-local.bb +++ b/recipes-fsl/fsl-rc-local/fsl-rc-local.bb @@ -8,7 +8,7 @@ SRC_URI = "file://rc.local.etc \ file://rc.local.init \ file://LICENSE" -S = "${WORKDIR}" +UNPACKDIR = "${S}" inherit update-rc.d