aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-05-10 12:30:12 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-05-12 13:10:16 +0100
commit464ee2e6b7cc5ebfc89869959dbe88c9f25f3476 (patch)
treed8fad5fc802038b148aa9b4569b6ef9635fbc0d9
parent59ce7d02a57e0a642d839ab48677f6ac1886180f (diff)
downloadopenembedded-core-contrib-464ee2e6b7cc5ebfc89869959dbe88c9f25f3476.tar.gz
dbus: Fix do_install files outside ${D}
do_install should not access the sysroot directly. Add missing ${D} reference. (From OE-Core rev: 9e246629cf72ff240f56abd775d5412dae2af055) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-core/dbus/dbus.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-core/dbus/dbus.inc b/meta/recipes-core/dbus/dbus.inc
index fb5d017856..01066cbf6a 100644
--- a/meta/recipes-core/dbus/dbus.inc
+++ b/meta/recipes-core/dbus/dbus.inc
@@ -143,12 +143,12 @@ do_install_class-native() {
autotools_do_install
# for dbus-glib-native introspection generation
- install -d ${STAGING_DATADIR_NATIVE}/dbus/
+ install -d ${D}${STAGING_DATADIR_NATIVE}/dbus/
# N.B. is below install actually required?
- install -m 0644 bus/session.conf ${STAGING_DATADIR_NATIVE}/dbus/session.conf
+ install -m 0644 bus/session.conf ${D}${STAGING_DATADIR_NATIVE}/dbus/session.conf
# dbus-glib-native and dbus-glib need this xml file
- ./bus/dbus-daemon --introspect > ${STAGING_DATADIR_NATIVE}/dbus/dbus-bus-introspect.xml
+ ./bus/dbus-daemon --introspect > ${D}${STAGING_DATADIR_NATIVE}/dbus/dbus-bus-introspect.xml
# dbus-launch has no X support so lets not install it in case the host
# has a more featured and useful version