diff options
author | Holger Freyther <zecke@selfish.org> | 2007-12-23 21:59:00 +0000 |
---|---|---|
committer | Holger Freyther <zecke@selfish.org> | 2007-12-23 21:59:00 +0000 |
commit | ca4bb462deb3b86c87b0f81ad097620ccfd199f7 (patch) | |
tree | 6ca22b6dc731c283a53ea68a165527cd80c9d2c5 /packages/meta | |
parent | 5a327da93307827512a2e1f33f3d4cd0a91f8f5f (diff) | |
parent | 2068d289bb9a9d0c2823a110d7751ba9e72e6542 (diff) |
merge of '4a9764846eca8e7a6608990c71feaab1b82bda1f'
and '541cfc2fc33004938c0e49fd51af40168cd2b1bb'
Diffstat (limited to 'packages/meta')
-rw-r--r-- | packages/meta/external-toolchain.bb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/meta/external-toolchain.bb b/packages/meta/external-toolchain.bb index c483ea26a6..47d9a93a15 100644 --- a/packages/meta/external-toolchain.bb +++ b/packages/meta/external-toolchain.bb @@ -30,21 +30,21 @@ do_stage() { install -d ${STAGING_DIR}/pkgdata/ install -d ${STAGING_DIR_TARGET}/shlibs/ - cp -ar ${prefix}/pkgdata/* ${STAGING_DIR}/pkgdata/ - cp -ar ${prefix}/${TARGET_SYS}/shlibs/* ${STAGING_DIR_TARGET}/shlibs/ + cp -pPRr ${prefix}/pkgdata/* ${STAGING_DIR}/pkgdata/ + cp -pPRr ${prefix}/${TARGET_SYS}/shlibs/* ${STAGING_DIR_TARGET}/shlibs/ if [ -d ${prefix}/ipk ]; then install -d ${DEPLOY_DIR_IPK}/ - cp -ar ${prefix}/ipk/* ${DEPLOY_DIR_IPK}/ + cp -pPRr ${prefix}/ipk/* ${DEPLOY_DIR_IPK}/ fi if [ -d ${prefix}/deb ]; then install -d ${DEPLOY_DIR_DEB}/ - cp -ar ${prefix}/deb/* ${DEPLOY_DIR_DEB}/ + cp -pPRr ${prefix}/deb/* ${DEPLOY_DIR_DEB}/ fi if [ -d ${prefix}/pstage -a "x${DEPLOY_DIR_PSTAGE}" != "x" ]; then install -d ${DEPLOY_DIR_PSTAGE}/ - cp -ar ${prefix}/pstage/* ${DEPLOY_DIR_PSTAGE}/ + cp -pPRr ${prefix}/pstage/* ${DEPLOY_DIR_PSTAGE}/ fi } |