diff options
author | Eric Bénard <eric@eukrea.com> | 2011-11-08 09:41:48 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-08 14:13:24 +0000 |
commit | a9091c94660b7fa3be509264423966a530e8f80b (patch) | |
tree | a5efc683e2a8c27ce1844321f5e15cf72d3a2572 /meta/recipes-core | |
parent | 27d70f96558bad40b9c2aed54a2a704ef8e5a50e (diff) | |
download | poky-a9091c94660b7fa3be509264423966a530e8f80b.tar.gz |
dbus: fix install for virtclass-nativesdk
* 46e6c3fa8034b12d178d605f3f5d7efe69671a13 changed do_install
which now fails for nativesdk (chown messagebus leads to no
such user)
* tested by building meta-toolchain-qte and running the generated
sdk
(From OE-Core rev: 5818a885df489f4bc9579d17c6b0efa7777f5ccc)
Signed-off-by: Eric Bénard <eric@eukrea.com>
Acked-by: Scott Garman <scott.a.garman@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/dbus/dbus.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-core/dbus/dbus.inc b/meta/recipes-core/dbus/dbus.inc index caa781c2fa..99b2fc7abc 100644 --- a/meta/recipes-core/dbus/dbus.inc +++ b/meta/recipes-core/dbus/dbus.inc | |||
@@ -105,4 +105,8 @@ do_install_virtclass-native() { | |||
105 | # dbus-glib-native and dbus-glib need this xml file | 105 | # dbus-glib-native and dbus-glib need this xml file |
106 | ./bus/dbus-daemon --introspect > ${STAGING_DATADIR_NATIVE}/dbus/dbus-bus-introspect.xml | 106 | ./bus/dbus-daemon --introspect > ${STAGING_DATADIR_NATIVE}/dbus/dbus-bus-introspect.xml |
107 | } | 107 | } |
108 | |||
109 | do_install_virtclass-nativesdk() { | ||
110 | autotools_do_install | ||
111 | } | ||
108 | BBCLASSEXTEND = "native nativesdk" | 112 | BBCLASSEXTEND = "native nativesdk" |