From 55e4d2ef117094d68759bb201b57bec073876a0b Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 4 Nov 2021 10:29:34 -0700 Subject: [PATCH] mpm-transport: 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 Acked-by: Denys Dmytriyenko Signed-off-by: Yogesh Siraswar --- recipes-ti/mpm-transport/mpm-transport_git.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-ti/mpm-transport/mpm-transport_git.bb b/recipes-ti/mpm-transport/mpm-transport_git.bb index 38aefc24..3b80af34 100644 --- a/recipes-ti/mpm-transport/mpm-transport_git.bb +++ b/recipes-ti/mpm-transport/mpm-transport_git.bb @@ -21,8 +21,8 @@ PR = "r0" CC += "-fcommon" EXTRA_OEMAKE = "PDK_INSTALL_PATH=${STAGING_INCDIR}" -EXTRA_OEMAKE:append:k2hk += "HYPLNK_TRANSPORT=true SRIO_TRANSPORT=true" -EXTRA_OEMAKE:append:k2e += "HYPLNK_TRANSPORT=true" +EXTRA_OEMAKE:append:k2hk = " HYPLNK_TRANSPORT=true SRIO_TRANSPORT=true" +EXTRA_OEMAKE:append:k2e = " HYPLNK_TRANSPORT=true" INSANE_SKIP:${PN} += "ldflags" S = "${WORKDIR}/git"