diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2004-10-12 22:26:02 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2004-10-12 22:26:02 +0000 |
commit | d8b39e47e90e19bce14cfb1fa49732933612f586 (patch) | |
tree | 4ba087dc918095dc1cfa5258c651f341aadb784f /qt/qt-x11-free-native_3.3.2.oe | |
parent | 64d22624e82b3cd4b6539d0898b2e3276736a218 (diff) |
qt-x11-free-native: take care of qte/qt3 split
BKrev: 416c59faThMWssT5sITIC9JdazM_Bw
Diffstat (limited to 'qt/qt-x11-free-native_3.3.2.oe')
-rw-r--r-- | qt/qt-x11-free-native_3.3.2.oe | 9 |
1 files changed, 5 insertions, 4 deletions
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 } |