fsl-mm-flv-codeclib: workaround to allow ipk creation

The prebuilt libraries int fsl-mm-flv-codeclib package do not follow the
lib*.so.* naming rule, and so the creation of the IPK package fails.

This is a workaround. The proper fix should be send upstream
(meta-fsl-arm).

Signed-off-by: Javier Viguera <javier.viguera@digi.com>
This commit is contained in:
Javier Viguera 2013-01-04 19:46:04 +01:00
parent ed96382a1f
commit eee97e48f1
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
PR_append = "+del.r0"
FILES_${PN} += "${libdir}/lib*"
do_install_append() {
cp -r ${S}/release/lib/* ${D}${libdir}
}