diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2013-10-03 14:24:08 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-04 18:26:51 +0100 |
commit | 56ea7aca3e6b4a0db3f699cc0d775d267b36e164 (patch) | |
tree | 74be3380674ec53e48cf4a896a88d104e484aa83 /meta | |
parent | 9d64f3de4a01b488ff49160298bea5356408ac7b (diff) | |
download | poky-56ea7aca3e6b4a0db3f699cc0d775d267b36e164.tar.gz |
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
(From OE-Core rev: 796b7510853e71f158ad18dcea4cd1a10c7ef294)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/dbus/dbus.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-core/dbus/dbus.inc b/meta/recipes-core/dbus/dbus.inc index 580a93661a..5864643996 100644 --- a/meta/recipes-core/dbus/dbus.inc +++ b/meta/recipes-core/dbus/dbus.inc | |||
@@ -141,5 +141,8 @@ do_install_class-nativesdk() { | |||
141 | # dbus-launch has no X support so lets not install it in case the host | 141 | # dbus-launch has no X support so lets not install it in case the host |
142 | # has a more featured and useful version | 142 | # has a more featured and useful version |
143 | rm -f ${D}${bindir}/dbus-launch | 143 | rm -f ${D}${bindir}/dbus-launch |
144 | |||
145 | # Remove /var/run to avoid QA error | ||
146 | rm -rf ${D}${localstatedir}/run | ||
144 | } | 147 | } |
145 | BBCLASSEXTEND = "native nativesdk" | 148 | BBCLASSEXTEND = "native nativesdk" |