From 525020d5d842e26cf5b8ea7ab665260e4d525193 Mon Sep 17 00:00:00 2001 From: Christophe Priouzeau Date: Thu, 20 May 2021 09:17:07 +0200 Subject: [PATCH] sdcard-raw-tools: add extra space with append on rdepends When trying to build with a more recent OE-master version, bitbake ended up having an issue parsing the rdepends for the target and native build targets due lack of space when appending bash to rdepends. Fix by just adding the extra space required when appending values to a variable. Signed-off-by: Ricardo Salveti --- recipes-devtools/sdcard-raw-tools/sdcard-raw-tools.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-devtools/sdcard-raw-tools/sdcard-raw-tools.bb b/recipes-devtools/sdcard-raw-tools/sdcard-raw-tools.bb index 715c2b6..1d5eddf 100644 --- a/recipes-devtools/sdcard-raw-tools/sdcard-raw-tools.bb +++ b/recipes-devtools/sdcard-raw-tools/sdcard-raw-tools.bb @@ -9,7 +9,7 @@ SRC_URI = "file://create_sdcard_from_flashlayout.sh" BBCLASSEXTEND = "native nativesdk" -RDEPENDS_${PN}_append = "bash" +RDEPENDS_${PN}_append = " bash " RRECOMMENDS_${PN}_append_class-nativesdk = "nativesdk-gptfdisk"