diff options
author | root root <ka6sox@gmail.com> | 2014-08-20 23:13:11 -0700 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-08-23 13:18:07 +0200 |
commit | 2619e2e80c3e30577127abf5f71863fac8919f2f (patch) | |
tree | 521efd3f38f029a9007701519dcfd5741fb41b94 /meta-multimedia/recipes-dvb | |
parent | ba39f285969f39cdb4bc67aa9fd30579c2cfe4da (diff) | |
download | meta-openembedded-2619e2e80c3e30577127abf5f71863fac8919f2f.tar.gz |
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>
Diffstat (limited to 'meta-multimedia/recipes-dvb')
-rw-r--r-- | meta-multimedia/recipes-dvb/oscam/oscam_svn.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-multimedia/recipes-dvb/oscam/oscam_svn.bb b/meta-multimedia/recipes-dvb/oscam/oscam_svn.bb index e3f270866..c4a4d99a4 100644 --- a/meta-multimedia/recipes-dvb/oscam/oscam_svn.bb +++ b/meta-multimedia/recipes-dvb/oscam/oscam_svn.bb | |||
@@ -14,5 +14,5 @@ S = "${WORKDIR}/trunk" | |||
14 | 14 | ||
15 | inherit cmake | 15 | inherit cmake |
16 | 16 | ||
17 | EXTRA_OECMAKE = "-DDEFAULT_CS_CONFDIR=${sysconfdir}" | 17 | EXTRA_OECMAKE = "-DDEFAULT_CS_CONFDIR=${sysconfdir} -DCMAKE_BUILD_TYPE=Debug" |
18 | 18 | ||