From e1c2979d49a06d583402bca905bedd1055dfe6e9 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sat, 14 Nov 2020 08:44:48 -0800 Subject: [PATCH] atf: Use space instead of += using append and += together is undefined behavior in bitbake Signed-off-by: Khem Raj --- recipes-bsp/atf/atf_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-bsp/atf/atf_git.bb b/recipes-bsp/atf/atf_git.bb index a93cb804..c7e7b15c 100644 --- a/recipes-bsp/atf/atf_git.bb +++ b/recipes-bsp/atf/atf_git.bb @@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://license.rst;md5=e927e02bca647e14efd87e9e914b2443" inherit deploy DEPENDS += "u-boot-mkimage-native u-boot openssl openssl-native mbedtls rcw cst-native" -DEPENDS_append_lx2160a += "ddr-phy" +DEPENDS_append_lx2160a = " ddr-phy" do_compile[depends] += "u-boot:do_deploy rcw:do_deploy uefi:do_deploy" S = "${WORKDIR}/git" -- 2.40.1