]> code.ossystems Code Review - meta-freescale.git/commitdiff
qoriq-atf: Do not use append with += operator 921/head
authorKhem Raj <raj.khem@gmail.com>
Thu, 4 Nov 2021 17:26:40 +0000 (10:26 -0700)
committerKhem Raj <raj.khem@gmail.com>
Thu, 4 Nov 2021 17:26:40 +0000 (10:26 -0700)
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 <raj.khem@gmail.com>
recipes-bsp/atf/qoriq-atf_2.4.bb

index 0c490a72b96e014f1d10a7301e0ff03eb569e7aa..7a7677910c10166404b980474dcedf78ed54d55c 100644 (file)
@@ -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"