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 <ricardo@foundries.io>
This commit is contained in:
Christophe Priouzeau 2021-05-20 09:17:07 +02:00
parent c44b9052ae
commit 525020d5d8
1 changed files with 1 additions and 1 deletions

View File

@ -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"