oscam: fixed QA issue where binary was being stripped

http://lists.openembedded.org/pipermail/openembedded-core/2014-August/095778.html

WARNING: QA Issue: File '/usr/bin/oscam' from oscam was already stripped,
this
will prevent future debugging! [already-stripped]

Fix above warning by telling cmake to do Debug type build, which prevents
linking with '-s' flag that removed symbols before bitbake could put them
into dbg package.

Signed-off-by: S. Lockwood-Childs <sjl@vctlabs.com>
Signed-off-by: Tom King<ka6sox@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
root root
2014-08-20 23:13:11 -07:00
committed by Martin Jansa
parent ba39f28596
commit 2619e2e80c
@@ -14,5 +14,5 @@ S = "${WORKDIR}/trunk"
inherit cmake
EXTRA_OECMAKE = "-DDEFAULT_CS_CONFDIR=${sysconfdir}"
EXTRA_OECMAKE = "-DDEFAULT_CS_CONFDIR=${sysconfdir} -DCMAKE_BUILD_TYPE=Debug"