diff options
author | Anders Darander <anders@chargestorm.se> | 2014-10-29 14:34:38 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-11-07 15:05:06 +0100 |
commit | e89f58a72dca03c307eac1fceaa0b177902844a8 (patch) | |
tree | 621357e33aa9f5af1049c854ee5f5ba09b7b4d11 /meta-oe/classes/breakpad.bbclass | |
parent | f2fdce3ec9f2f65704dfb529a7fb96ec55b8ecab (diff) | |
download | meta-openembedded-e89f58a72dca03c307eac1fceaa0b177902844a8.tar.gz |
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@chargestorm.se>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/classes/breakpad.bbclass')
-rw-r--r-- | meta-oe/classes/breakpad.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/classes/breakpad.bbclass b/meta-oe/classes/breakpad.bbclass index e4d6808a6..b3abf278d 100644 --- a/meta-oe/classes/breakpad.bbclass +++ b/meta-oe/classes/breakpad.bbclass | |||
@@ -24,7 +24,7 @@ python () { | |||
24 | PACKAGE_PREPROCESS_FUNCS += "breakpad_package_preprocess" | 24 | PACKAGE_PREPROCESS_FUNCS += "breakpad_package_preprocess" |
25 | breakpad_package_preprocess () { | 25 | breakpad_package_preprocess () { |
26 | mkdir -p ${PKGD}/usr/share/breakpad-syms | 26 | mkdir -p ${PKGD}/usr/share/breakpad-syms |
27 | find ${D} -name ${BREAKPAD_BIN} -exec sh -c "dump_syms {} > ${PKGD}/usr/share/breakpad-syms/${BREAKPAD_BIN}.syms" \; | 27 | find ${D} -name ${BREAKPAD_BIN} -exec sh -c "dump_syms {} > ${PKGD}/usr/share/breakpad-syms/${BREAKPAD_BIN}.sym" \; |
28 | } | 28 | } |
29 | 29 | ||
30 | PACKAGES =+ "${PN}-breakpad" | 30 | PACKAGES =+ "${PN}-breakpad" |