aboutsummaryrefslogtreecommitdiffstats
path: root/qt
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2004-10-12 22:26:02 +0000
committerMarcin Juszkiewicz <hrw@openembedded.org>2004-10-12 22:26:02 +0000
commitd8b39e47e90e19bce14cfb1fa49732933612f586 (patch)
tree4ba087dc918095dc1cfa5258c651f341aadb784f /qt
parent64d22624e82b3cd4b6539d0898b2e3276736a218 (diff)
downloadopenembedded-d8b39e47e90e19bce14cfb1fa49732933612f586.tar.gz
qt-x11-free-native: take care of qte/qt3 split
BKrev: 416c59faThMWssT5sITIC9JdazM_Bw
Diffstat (limited to 'qt')
-rw-r--r--qt/qt-x11-free-native_3.3.2.oe9
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
}