diff options
author | Steve Sakoman <steve@sakoman.com> | 2012-01-06 20:51:52 -0800 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2012-01-09 21:51:50 -0800 |
commit | 7b1e227bf28c9d4f3bb16af4d9ac21265e88a3f1 (patch) | |
tree | ae8f022a1c5aa569f04f08098a27027dfd1822cd /meta | |
parent | f1193e077d187b9ce18ae0686b1a1f0f9832036d (diff) | |
download | openembedded-core-7b1e227bf28c9d4f3bb16af4d9ac21265e88a3f1.tar.gz openembedded-core-7b1e227bf28c9d4f3bb16af4d9ac21265e88a3f1.tar.bz2 openembedded-core-7b1e227bf28c9d4f3bb16af4d9ac21265e88a3f1.zip |
dbus: change permissions of dbus-daemon-launch-helper to 4755
With current permissions of 4754 on systemd systems various services will fail to
activate with "helpful" error messages of the type:
2000-01-01T00:00:25+00:00 omap3-multi dbus[178]: [system] Activated service
'org.freedesktop.nm_dispatcher' failed: Failed to execute program
/usr/libexec/dbus-daemon-launch-helper: Success
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/dbus/dbus.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-core/dbus/dbus.inc b/meta/recipes-core/dbus/dbus.inc index 99b2fc7abc..2a2525676f 100644 --- a/meta/recipes-core/dbus/dbus.inc +++ b/meta/recipes-core/dbus/dbus.inc @@ -10,6 +10,8 @@ DEPENDS = "expat virtual/libintl ${@base_contains('DISTRO_FEATURES', 'x11', '${X DEPENDS_virtclass-native = "expat-native virtual/libintl-native" DEPENDS_virtclass-nativesdk = "expat-nativesdk virtual/libintl-nativesdk virtual/libx11" +INC_PR = "r1" + SRC_URI = "http://dbus.freedesktop.org/releases/dbus/dbus-${PV}.tar.gz \ file://tmpdir.patch; \ file://dbus-1.init" @@ -84,7 +86,7 @@ do_install() { chown messagebus:messagebus ${D}${localstatedir}/run/dbus ${D}${localstatedir}/lib/dbus chown root:messagebus ${D}${libexecdir}/dbus-daemon-launch-helper - chmod 4754 ${D}${libexecdir}/dbus-daemon-launch-helper + chmod 4755 ${D}${libexecdir}/dbus-daemon-launch-helper # Remove Red Hat initscript rm -rf ${D}${sysconfdir}/rc.d |