diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-01 14:20:03 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-01 17:43:57 +0000 |
commit | ec20f0ed5d12bab87aa35be8e2bf6c333680739b (patch) | |
tree | d8ae4f7cf87a392ee4279900bd85bc7b593a8e1e /meta/recipes-core | |
parent | 3001a4659d618c5e3e2750d779ee97f008300b12 (diff) | |
download | poky-ec20f0ed5d12bab87aa35be8e2bf6c333680739b.tar.gz |
dbus: Use $D not ${D} in the postinstall
We need to do this as we don't want bitbake to expand the variable
but use the shell variable instead.
(From OE-Core rev: 509a8a9ea428debf3ff2115fcff0aa89d0239ced)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/dbus/dbus.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/dbus/dbus.inc b/meta/recipes-core/dbus/dbus.inc index 4c7d87a91d..b378bda63a 100644 --- a/meta/recipes-core/dbus/dbus.inc +++ b/meta/recipes-core/dbus/dbus.inc | |||
@@ -51,7 +51,7 @@ RRECOMMENDS_${PN}-lib = "${PN}" | |||
51 | FILES_${PN}-dev += "${libdir}/dbus-1.0/include ${bindir}/dbus-glib-tool" | 51 | FILES_${PN}-dev += "${libdir}/dbus-1.0/include ${bindir}/dbus-glib-tool" |
52 | 52 | ||
53 | pkg_postinst_dbus() { | 53 | pkg_postinst_dbus() { |
54 | if [ -z "${D}" ] && [ -e /etc/init.d/populate-volatile.sh ] ; then | 54 | if [ -z "$D" ] && [ -e /etc/init.d/populate-volatile.sh ] ; then |
55 | /etc/init.d/populate-volatile.sh update | 55 | /etc/init.d/populate-volatile.sh update |
56 | fi | 56 | fi |
57 | } | 57 | } |