[oe-commits] Paul Menzel : ltp_20100831: `${PN}-dbg`: use `+=` instead of `= ` to append to the list

git version control git at git.openembedded.org
Sat Jan 22 17:29:53 UTC 2011


Module: openembedded.git
Branch: master
Commit: b0a51470836434aa70a8c30a0eb0b0b15089418b
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=b0a51470836434aa70a8c30a0eb0b0b15089418b

Author: Paul Menzel <paulepanter at users.sourceforge.net>
Date:   Fri Jan 21 13:35:37 2011 +0100

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 <paulepanter at users.sourceforge.net>
CC: Leon Woestenberg <leon at sidebranch.com>
Signed-off-by: Khem Raj <raj.khem at gmail.com>

---

 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"





More information about the Openembedded-commits mailing list