mirror of
https://git.yoctoproject.org/poky
synced 2026-04-18 21:32:12 +02:00
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>
This commit is contained in:
@@ -51,7 +51,7 @@ RRECOMMENDS_${PN}-lib = "${PN}"
|
||||
FILES_${PN}-dev += "${libdir}/dbus-1.0/include ${bindir}/dbus-glib-tool"
|
||||
|
||||
pkg_postinst_dbus() {
|
||||
if [ -z "${D}" ] && [ -e /etc/init.d/populate-volatile.sh ] ; then
|
||||
if [ -z "$D" ] && [ -e /etc/init.d/populate-volatile.sh ] ; then
|
||||
/etc/init.d/populate-volatile.sh update
|
||||
fi
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user