diff options
author | Aws Ismail <aws.ismail@windriver.com> | 2013-02-14 16:51:03 -0500 |
---|---|---|
committer | Joe MacDonald <joe.macdonald@windriver.com> | 2013-02-14 22:46:38 -0500 |
commit | a3f1c77cf5d7d350502ff6eb1784fbf432ea6fc5 (patch) | |
tree | bdc31f699dd761fcad8d838ebe33bb3372999a41 /meta-networking | |
parent | 86c9e56cec5cdfb09c70f94f5b9447645d450a31 (diff) | |
download | meta-openembedded-a3f1c77cf5d7d350502ff6eb1784fbf432ea6fc5.tar.gz |
accel-ppp: resolve QA warnings and satisfy multilib
Create -libs and -dbg splits to include .so and .debug
files, respectively to resolve the QA warning:
lib64-accel-ppp rdepends on lib64-accel-ppp-dev when
multilib is being used.
Signed-off-by: Aws Ismail <aws.ismail@windriver.com>
Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
Diffstat (limited to 'meta-networking')
-rw-r--r-- | meta-networking/recipes-protocols/accel-ppp/accel-ppp_git.bb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meta-networking/recipes-protocols/accel-ppp/accel-ppp_git.bb b/meta-networking/recipes-protocols/accel-ppp/accel-ppp_git.bb index 9eb9bf82e..d17cc78a1 100644 --- a/meta-networking/recipes-protocols/accel-ppp/accel-ppp_git.bb +++ b/meta-networking/recipes-protocols/accel-ppp/accel-ppp_git.bb | |||
@@ -8,6 +8,7 @@ DEPENDS = "openssl libpcre" | |||
8 | 8 | ||
9 | inherit cmake | 9 | inherit cmake |
10 | 10 | ||
11 | PR = "r1" | ||
11 | PV = "1.7.3+git" | 12 | PV = "1.7.3+git" |
12 | 13 | ||
13 | SRCREV = "4acfa46c321a344b9a6ce4128e72d1e02828d8a0" | 14 | SRCREV = "4acfa46c321a344b9a6ce4128e72d1e02828d8a0" |
@@ -23,3 +24,9 @@ EXTRA_OECMAKE = " \ | |||
23 | -DRADIUS=FALSE \ | 24 | -DRADIUS=FALSE \ |
24 | -DNETSNMP=FALSE \ | 25 | -DNETSNMP=FALSE \ |
25 | " | 26 | " |
27 | FILES_${PN}-dbg += "/usr/lib/${BPN}/.debug/*" | ||
28 | |||
29 | PACKAGES =+ "${PN}-libs" | ||
30 | FILES_${PN}-libs = "${libdir}/${BPN}/*.so /usr/lib/${BPN}/*.so" | ||
31 | INSANE_SKIP_${PN}-libs = "dev-so" | ||
32 | RDEPENDS_${PN} += "${PN}-libs" | ||