1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-06-05 02:11:00 +00:00

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 <raj.khem@gmail.com>
Acked-by: Denys Dmytriyenko <denys@konsulko.com>
Signed-off-by: Yogesh Siraswar <yogeshs@ti.com>
This commit is contained in:
Khem Raj
2021-11-04 10:29:34 -07:00
committed by Yogesh Siraswar
parent 15326435dd
commit 55e4d2ef11
@@ -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"