From: Paul Menzel Date: Fri, 21 Jan 2011 12:35:37 +0000 (+0100) Subject: ltp_20100831: `${PN}-dbg`: use `+=` instead of `=` to append to the list X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b0a51470836434aa70a8c30a0eb0b0b15089418b;p=openembedded.git 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 --- 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"