diff --git a/recipes-libreoffice/libreoffice/libreoffice-native.bb b/recipes-libreoffice/libreoffice/libreoffice-native.bb index 222f63f..908af52 100644 --- a/recipes-libreoffice/libreoffice/libreoffice-native.bb +++ b/recipes-libreoffice/libreoffice/libreoffice-native.bb @@ -79,4 +79,9 @@ do_install() { for name in `find ${B}/instdir/program -type f` ; do install "$name" ${D}/${libdir} done + + # move saxparser.rdb to libdir - we'll need it for cross building + cp -rf ${B}/workdir/Rdb/saxparser.rdb ${D}/${libdir} + # fix library path - otherwise cross lib is pulled for native saxparse + sed -i 's:LO_LIB_DIR:URE_INTERNAL_LIB_DIR:g' ${D}/${libdir}/saxparser.rdb }