summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/dbus/dbus.inc
diff options
context:
space:
mode:
authorEnrico Scholz <enrico.scholz@sigma-chemnitz.de>2014-06-12 15:34:26 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-06-13 12:55:33 +0100
commit445bd3b73b7d649812c129ac749dad689daee985 (patch)
tree9b254822b34a70a70c73f21285e20dd6691e594c /meta/recipes-core/dbus/dbus.inc
parentb46262156ac2232759e1aa61dc931440b0b12816 (diff)
downloadpoky-445bd3b73b7d649812c129ac749dad689daee985.tar.gz
dbus: fixed mode if systemd service file
systemd complains with | Configuration file /lib/systemd/system/dbus.socket is marked executable. Please remove executable permission bits. Proceeding anyway. | Configuration file /lib/systemd/system/dbus.service is marked executable. Please remove executable permission bits. Proceeding anyway. else. (From OE-Core rev: 67e966c2576b360ee132989bee32d3080305a099) Signed-off-by: Enrico Scholz <enrico.scholz@sigma-chemnitz.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/dbus/dbus.inc')
-rw-r--r--meta/recipes-core/dbus/dbus.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/dbus/dbus.inc b/meta/recipes-core/dbus/dbus.inc
index be0131c3d8..5b2a056511 100644
--- a/meta/recipes-core/dbus/dbus.inc
+++ b/meta/recipes-core/dbus/dbus.inc
@@ -108,7 +108,7 @@ do_install() {
108 if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then 108 if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
109 for i in dbus.target.wants sockets.target.wants multi-user.target.wants; do \ 109 for i in dbus.target.wants sockets.target.wants multi-user.target.wants; do \
110 install -d ${D}${systemd_unitdir}/system/$i; done 110 install -d ${D}${systemd_unitdir}/system/$i; done
111 install ${B}/bus/dbus.service ${B}/bus/dbus.socket ${D}${systemd_unitdir}/system/ 111 install -m 0644 ${B}/bus/dbus.service ${B}/bus/dbus.socket ${D}${systemd_unitdir}/system/
112 cd ${D}${systemd_unitdir}/system/dbus.target.wants/ 112 cd ${D}${systemd_unitdir}/system/dbus.target.wants/
113 ln -fs ../dbus.socket ${D}${systemd_unitdir}/system/dbus.target.wants/dbus.socket 113 ln -fs ../dbus.socket ${D}${systemd_unitdir}/system/dbus.target.wants/dbus.socket
114 ln -fs ../dbus.socket ${D}${systemd_unitdir}/system/sockets.target.wants/dbus.socket 114 ln -fs ../dbus.socket ${D}${systemd_unitdir}/system/sockets.target.wants/dbus.socket