[oe-commits] Anders Darander : breakpad: correct the file suffix of the symbol file

git at git.openembedded.org git at git.openembedded.org
Fri Nov 7 14:47:24 UTC 2014


Module: meta-openembedded.git
Branch: master-next
Commit: e89f58a72dca03c307eac1fceaa0b177902844a8
URL:    http://git.openembedded.org/?p=meta-openembedded.git&a=commit;h=e89f58a72dca03c307eac1fceaa0b177902844a8

Author: Anders Darander <anders at chargestorm.se>
Date:   Wed Oct 29 14:34:38 2014 +0100

breakpad: correct the file suffix of the symbol file

minidump_stackwalk looks for a .sym file extension. Correct the extension used for the generated file.

Signed-off-by: Anders Darander <anders at chargestorm.se>
Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>

---

 meta-oe/classes/breakpad.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/classes/breakpad.bbclass b/meta-oe/classes/breakpad.bbclass
index e4d6808..b3abf27 100644
--- a/meta-oe/classes/breakpad.bbclass
+++ b/meta-oe/classes/breakpad.bbclass
@@ -24,7 +24,7 @@ python () {
 PACKAGE_PREPROCESS_FUNCS += "breakpad_package_preprocess"
 breakpad_package_preprocess () {
     mkdir -p ${PKGD}/usr/share/breakpad-syms
-    find ${D} -name ${BREAKPAD_BIN} -exec sh -c "dump_syms {} > ${PKGD}/usr/share/breakpad-syms/${BREAKPAD_BIN}.syms" \;
+    find ${D} -name ${BREAKPAD_BIN} -exec sh -c "dump_syms {} > ${PKGD}/usr/share/breakpad-syms/${BREAKPAD_BIN}.sym" \;
 }
 
 PACKAGES =+ "${PN}-breakpad"



More information about the Openembedded-commits mailing list