severity: error
In my-recipe_1.0.bb
pkg_preinst:${PN} () {
if [ -n "${D}" ]; then
echo "Foo"
fi
}
${D}
is only known to bitbake, while the pkg_*
function can run on the actual target as well (through package management feature).
Use $D
instead
pkg_preinst:${PN} () {
if [ -n "$D" ]; then
echo "Foo"
fi
}