From 9faf0b7205a0a50f488101a006976689a1ad3bf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Mon, 7 Dec 2015 00:59:11 +0100 Subject: [PATCH] libreoffice-native: install saxparser.rdb and align library path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- recipes-libreoffice/libreoffice/libreoffice-native.bb | 5 +++++ 1 file changed, 5 insertions(+) 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 }