lv2-postinst-helper.bbclass: Do not abort on failure but report error in postinstalllog

lv2-postinst-helper is last chance for plugins not working with qemu. So errors
are likely to happen. So it is better to have most plugins running and - more
important: avoid package-manager retry postinst every time some package is
installed.

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
This commit is contained in:
Andreas Müller
2019-10-06 17:33:44 +02:00
parent 303682dc42
commit 9e0e492ba4

View File

@@ -35,7 +35,7 @@ pkg_postinst_ontarget_${PN}-lv2() {
oldpath=`pwd`
for sofile in `cat ${LV2-POSTINST-MANIFEST}`; do
cd `dirname "$sofile"`
lv2-ttl-generator "$sofile"
lv2-ttl-generator "$sofile" || echo "Error: Turtle files for $sofile could not be created!"
done
cd $oldpath
}