external-poky-toolchain: Add include and lib files to the staging sysroot removing the need to link against two trees at the same time

This commit is contained in:
Richard Purdie 2008-12-05 14:35:46 +00:00
parent 73b2200724
commit f1bac68e17
1 changed files with 6 additions and 0 deletions

View File

@ -25,9 +25,15 @@ do_stage() {
install -d ${DEPLOY_DIR}/ipk/
install -d ${STAGING_DIR}/pkgdata/
install -d ${STAGING_DIR_TARGET}/shlibs/
install -d ${STAGING_DIR_TARGET}/${layout_base_libdir}/
install -d ${STAGING_DIR_TARGET}/${layout_libdir}/
install -d ${STAGING_DIR_TARGET}/${layout_includedir}/
cp -ar ${prefix}/ipk/* ${DEPLOY_DIR}/ipk/
cp -ar ${prefix}/pkgdata/* ${STAGING_DIR}/pkgdata/
cp -ar ${prefix}/${TARGET_SYS}/shlibs/* ${STAGING_DIR_TARGET}/shlibs/
cp -ar ${prefix}/${TARGET_SYS}/lib/* ${STAGING_DIR_TARGET}/${layout_base_libdir}/
cp -ar ${prefix}/${TARGET_SYS}/usr/include/* ${STAGING_DIR_TARGET}/${layout_includedir}/
cp -ar ${prefix}/${TARGET_SYS}/usr/lib/* ${STAGING_DIR_TARGET}/${layout_libdir}/
}