From: Paul Eggleton Date: Thu, 3 Oct 2013 13:24:08 +0000 (+0100) Subject: dbus: fix QA error building nativesdk-dbus X-Git-Tag: yocto-4.0~31382 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=796b7510853e71f158ad18dcea4cd1a10c7ef294;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git dbus: fix QA error building nativesdk-dbus Fixes the following QA error: ERROR: QA Issue: nativesdk-dbus: Files/directories were installed but not shipped /run /run/dbus Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-core/dbus/dbus.inc b/meta/recipes-core/dbus/dbus.inc index 580a93661a3..58646439965 100644 --- a/meta/recipes-core/dbus/dbus.inc +++ b/meta/recipes-core/dbus/dbus.inc @@ -141,5 +141,8 @@ do_install_class-nativesdk() { # dbus-launch has no X support so lets not install it in case the host # has a more featured and useful version rm -f ${D}${bindir}/dbus-launch + + # Remove /var/run to avoid QA error + rm -rf ${D}${localstatedir}/run } BBCLASSEXTEND = "native nativesdk"