diff options
author | José Bollo <jose.bollo@iot.bzh> | 2018-04-06 14:20:17 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2018-04-06 14:27:47 +0200 |
commit | a3b3b0936c6c16a4c19a6ff57f6b3d866bd17781 (patch) | |
tree | b56f7e038d62702cbc72d89a3a678769e4f2006b /meta-security/recipes-core | |
parent | d7489cff0cbc5937951759c3d8f30da6a47771f4 (diff) |
dbus-cynara: Fix a missing RDEPENDS
dbus-cynara is a separate package of dbus because it
allows to break the dependency loop dbus -> cynara -> ... -> dbus
coming from the fact that many many usefull things depend
on dbus: documentation generators, test handlers, ...
In other words, dbus-cynara is the same as dbus. As such, it
uses the subpackage dbus-lib (known as libdbus). This has to
be set as a RDEPENDS, otherwise bitbake complains:
QA Issue: dbus-cynara rdepends on dbus-lib, but it isn't a builds
dependency, missing dbus in DEPENDS or PACKAGECONFIG?
Change-Id: I72472dc9e6e8f21d0aabc9a1186f1cb7d8343445
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'meta-security/recipes-core')
-rw-r--r-- | meta-security/recipes-core/dbus-cynara/dbus-cynara_1.10.20.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-security/recipes-core/dbus-cynara/dbus-cynara_1.10.20.bb b/meta-security/recipes-core/dbus-cynara/dbus-cynara_1.10.20.bb index c46298e53..a97148366 100644 --- a/meta-security/recipes-core/dbus-cynara/dbus-cynara_1.10.20.bb +++ b/meta-security/recipes-core/dbus-cynara/dbus-cynara_1.10.20.bb @@ -12,6 +12,8 @@ SRC_URI_append = "\ " DEPENDS += "cynara smack" +RDEPENDS_${PN} += "dbus" + EXTRA_OECONF += "--enable-cynara --disable-selinux" inherit distro_features_check |