qtbase: fix regression for missing libqt*.a libs

Deploy the following statically linked libraries:
../build/lib/libqtfreetype.a  ../build/lib/libqtfreetype.prl
../build/lib/libqtpcre.a  ../build/lib/libqtpcre.prl

Fixes build of qtwayland (which is required for meta-toolchain-qt5):
| .../arm-angstrom-linux-gnueabi-ld.gold: error: cannot find -lqtfreetype
regression introduced with d6aeedb7f2 which
reverted the fix by Khem c44912563c

Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
Max Krummenacher
2016-08-27 15:32:24 +02:00
committed by Martin Jansa
parent ea37a0bc98
commit a8d4dafdfd

View File

@@ -232,7 +232,7 @@ do_install_append() {
cp -d ${S}/lib/fonts/* ${D}/${OE_QMAKE_PATH_QT_FONTS}
chown -R root:root ${D}/${OE_QMAKE_PATH_QT_FONTS}
fi
cp -d ${B}/lib/libQt* ${D}${libdir}
cp -d ${B}/lib/libqt* ${D}${libdir}
# Remove example.pro file as it is useless
rm -f ${D}${OE_QMAKE_PATH_EXAMPLES}/examples.pro