summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
}