From: Marcin Juszkiewicz Date: Tue, 12 Oct 2004 22:26:02 +0000 (+0000) Subject: qt-x11-free-native: take care of qte/qt3 split X-Git-Tag: Release-2010-05/1~16643 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8b39e47e90e19bce14cfb1fa49732933612f586;p=openembedded.git qt-x11-free-native: take care of qte/qt3 split BKrev: 416c59faThMWssT5sITIC9JdazM_Bw --- diff --git a/qt/qt-x11-free-native_3.3.2.oe b/qt/qt-x11-free-native_3.3.2.oe index 4aa547b2a4..ffbbf4beed 100644 --- a/qt/qt-x11-free-native_3.3.2.oe +++ b/qt/qt-x11-free-native_3.3.2.oe @@ -40,15 +40,16 @@ do_compile() { } do_stage() { - oe_soinstall lib/libqt-mt.so.${PV} ${STAGING_LIBDIR}/ + install -d ${STAGING_DIR}/${HOST_SYS}/qt3/lib + oe_soinstall lib/libqt-mt.so.${PV} ${STAGING_DIR}/${HOST_SYS}/qt3/lib + install -d ${STAGING_DIR}/${HOST_SYS}/qt3/include/private for f in include/*.h do - install -m 0644 $f ${STAGING_INCDIR}/ + install -m 0644 $f ${STAGING_DIR}/${HOST_SYS}/qt3/include/ done - install -d ${STAGING_INCDIR}/private for f in include/private/*.h do - install -m 0644 $f ${STAGING_INCDIR}/private/ + install -m 0644 $f ${STAGING_DIR}/${HOST_SYS}/qt3/include/private done }