From 329518d7a8c63775cb6867b93f2cbc7863906808 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 4 Nov 2021 10:26:40 -0700 Subject: [PATCH] qoriq-atf: Do not use append with += operator this is undefined behaviour, mant times devs used them together to get the missing space at the beginning of string which append/prepend needs but thats not intended behaviour Signed-off-by: Khem Raj --- recipes-bsp/atf/qoriq-atf_2.4.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-bsp/atf/qoriq-atf_2.4.bb b/recipes-bsp/atf/qoriq-atf_2.4.bb index 0c490a72..7a767791 100644 --- a/recipes-bsp/atf/qoriq-atf_2.4.bb +++ b/recipes-bsp/atf/qoriq-atf_2.4.bb @@ -3,8 +3,8 @@ require recipes-bsp/atf/qoriq-atf-2.4.inc inherit deploy DEPENDS += "u-boot-mkimage-native u-boot openssl openssl-native mbedtls rcw cst-native bc-native" -DEPENDS:append:lx2160a += "ddr-phy" -DEPENDS:append:lx2162a += "ddr-phy" +DEPENDS:append:lx2160a = " ddr-phy" +DEPENDS:append:lx2162a = " ddr-phy" do_compile[depends] += "u-boot:do_deploy rcw:do_deploy uefi:do_deploy" SRC_URI += "git://github.com/ARMmbed/mbedtls;nobranch=1;destsuffix=git/mbedtls;name=mbedtls;protocol=https" -- 2.40.1