diff options
author | Armin Kuster <akuster808@gmail.com> | 2018-04-08 19:37:31 -0700 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2018-04-13 12:43:46 -0700 |
commit | c3e3cbe8fa77f70a72cd20b871f2a7303d62dbf5 (patch) | |
tree | cb98c32d5a598285766e13ef056ee29d535c5f36 /meta-oe/recipes-core/dbus | |
parent | 0b079f6958d52d9553c2a60e998ef4ee63f0dcdf (diff) | |
download | meta-openembedded-c3e3cbe8fa77f70a72cd20b871f2a7303d62dbf5.tar.gz |
dbus-broker: include only if systemd is DISTO_FEATURE
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-core/dbus')
-rw-r--r-- | meta-oe/recipes-core/dbus/dbus-broker_git.bb | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/meta-oe/recipes-core/dbus/dbus-broker_git.bb b/meta-oe/recipes-core/dbus/dbus-broker_git.bb index 51dfe8c0a..b62bccf2c 100644 --- a/meta-oe/recipes-core/dbus/dbus-broker_git.bb +++ b/meta-oe/recipes-core/dbus/dbus-broker_git.bb | |||
@@ -6,7 +6,7 @@ SECTION = "base" | |||
6 | LICENSE = "Apache-2.0" | 6 | LICENSE = "Apache-2.0" |
7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=7b486c2338d225a1405d979ed2c15ce8" | 7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=7b486c2338d225a1405d979ed2c15ce8" |
8 | 8 | ||
9 | DEPENDS = "dbus glib-2.0 expat systemd" | 9 | DEPENDS = "dbus glib-2.0 expat" |
10 | 10 | ||
11 | PV = "9+git${SRCPV}" | 11 | PV = "9+git${SRCPV}" |
12 | SRCREV = "ccd06b284892182af569e69046262331150e3536" | 12 | SRCREV = "ccd06b284892182af569e69046262331150e3536" |
@@ -17,13 +17,16 @@ SRC_URI += "file://0002-Correct-including-directory-for-conf.patch" | |||
17 | 17 | ||
18 | S = "${WORKDIR}/git" | 18 | S = "${WORKDIR}/git" |
19 | 19 | ||
20 | inherit meson pkgconfig systemd | 20 | inherit meson pkgconfig systemd distro_features_check |
21 | |||
22 | REQUIRED_DISTRO_FEATURES = "systemd" | ||
21 | 23 | ||
22 | SYSTEMD_SERVICE_${PN} = "${BPN}.service" | 24 | SYSTEMD_SERVICE_${PN} = "${BPN}.service" |
23 | 25 | ||
24 | FILES_${PN} += "${systemd_system_unitdir}" | 26 | FILES_${PN} += "${systemd_system_unitdir}" |
25 | FILES_${PN} += "${systemd_user_unitdir}" | 27 | FILES_${PN} += "${systemd_user_unitdir}" |
26 | 28 | ||
27 | RDEPENDS_${PN} = "dbus systemd" | 29 | RDEPENDS_${PN} = "dbus" |
28 | 30 | ||
29 | BBCLASSEXTEND = "native" | 31 | BBCLASSEXTEND = "native" |
32 | |||