From b0a51470836434aa70a8c30a0eb0b0b15089418b Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Fri, 21 Jan 2011 13:35:37 +0100 Subject: [PATCH] ltp_20100831: `${PN}-dbg`: use `+=` instead of `=` to append to the list Populating `${PN}-dbg` the second entry replaces the list instead of appending to it [1]. [1] http://docs.openembedded.org/usermanual/usermanual.html#metadata_writing_data Signed-off-by: Paul Menzel CC: Leon Woestenberg Signed-off-by: Khem Raj --- recipes/ltp/ltp_20100831.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/ltp/ltp_20100831.bb b/recipes/ltp/ltp_20100831.bb index f705405b21..ca6a4e365a 100644 --- a/recipes/ltp/ltp_20100831.bb +++ b/recipes/ltp/ltp_20100831.bb @@ -15,8 +15,8 @@ S = "${WORKDIR}/ltp-full-${PV}" EXTRA_OEMAKE_append = " CROSS_COMPILE=${HOST_PREFIX} SKIP_IDCHECK=1" -FILES_${PN}-dbg = "/usr/.debug" -FILES_${PN}-dbg = "/usr/bin/.debug" +FILES_${PN}-dbg += "/usr/.debug" +FILES_${PN}-dbg += "/usr/bin/.debug" FILES_${PN}-dbg += "/usr/runtest/.debug" FILES_${PN}-dbg += "/usr/testcases/bin/.debug" FILES_${PN}-dbg += "/usr/testcases/bin/*/bin/.debug" -- 2.39.5