mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
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>
This commit is contained in:
parent
f2fdce3ec9
commit
e89f58a72d
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user