diff options
author | Holger Freyther <zecke@selfish.org> | 2007-12-26 11:29:32 +0000 |
---|---|---|
committer | Holger Freyther <zecke@selfish.org> | 2007-12-26 11:29:32 +0000 |
commit | b83095b631a258a8067c8388d89abad9fc6fbec5 (patch) | |
tree | c0961ee9fcbb55b6abad4b41447ff65f2795846e | |
parent | 3fb18a16f604ff294bb1500a40e8a7c74424ae99 (diff) |
packages/qt4/qt_staging.inc: Fix place of the include and library directory
-rw-r--r-- | packages/qt4/qt_staging.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/qt4/qt_staging.inc b/packages/qt4/qt_staging.inc index ecfe0bb321..21f17590b5 100644 --- a/packages/qt4/qt_staging.inc +++ b/packages/qt4/qt_staging.inc @@ -12,13 +12,13 @@ do_stage() { mkdir -p ${STAGE_TEMP} oe_runmake install INSTALL_ROOT=${STAGE_TEMP} - install -d ${STAGING_INCDIR}/${QT_DIR_NAME} + install -d ${STAGING_INCDIR}/ install -d ${STAGING_LIBDIR}/${QT_DIR_NAME} - cp -pPRf ${STAGE_TEMP}/$includedir/* ${STAGING_INCDIR}/${QT_DIR_NAME}/ + cp -pPRf ${STAGE_TEMP}/$includedir/* ${STAGING_INCDIR}/ for i in ${STAGE_TEMP}/${libdir}/*.la do - oe_libinstall -C ${STAGE_TEMP}/${libdir} -so $(basename $i .la) ${STAGING_LIBDIR}/qtopiacore4 + oe_libinstall -C ${STAGE_TEMP}/${libdir} -so $(basename $i .la) ${STAGING_LIBDIR}/${QT_DIR_NAME} done rm -rf ${STAGE_TEMP} |