From patchwork Fri Jan 21 12:44:52 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: ltp_20100831: `${PN}-dbg`: use `+=` instead of `=` to append to the list Date: Fri, 21 Jan 2011 12:44:52 -0000 From: Paul Menzel X-Patchwork-Id: 333 Message-Id: <1295613892.12720.58.camel@mattotaupa> To: openembedded-devel@lists.openembedded.org Cc: Leon Woestenberg Date: Fri, 21 Jan 2011 13:35:37 +0100 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 --- I also replaced the first `=` to `+=` in case the classes find symbols/files to distribute in that package. --- recipes/ltp/ltp_20100831.bb | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/ltp/ltp_20100831.bb b/recipes/ltp/ltp_20100831.bb index f705405..ca6a4e3 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"