diff options
author | Holger Freyther <zecke@selfish.org> | 2005-09-19 12:29:59 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-09-19 12:29:59 +0000 |
commit | 57c3acf775eeb9f8a2613c3752688d7816f2b0a4 (patch) | |
tree | e146788bde63677bbc22b17d8c476eced456adf8 /packages/db | |
parent | 06926d0f7b737204ff8f31d8551d72e223ce4a78 (diff) |
GNU cp has a nice -a switch, sadly the BSD tools lack it
update our descriptions to work with any version of cp. Patches that include
cp -a are not changed. They seem to work and I'm too scared busybox cp
is more like GNU cp than BSD cp. (e.g do not know about P)
Diffstat (limited to 'packages/db')
-rw-r--r-- | packages/db/db_4.3.27.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/db/db_4.3.27.bb b/packages/db/db_4.3.27.bb index 216fb5714b..8c0d8e6ec3 100644 --- a/packages/db/db_4.3.27.bb +++ b/packages/db/db_4.3.27.bb @@ -78,7 +78,7 @@ do_stage() { mkdir -p ${STAGE_TEMP} oe_runmake DESTDIR="${STAGE_TEMP}" install_include mkdir -p ${STAGING_INCDIR}/db4 - cp -af ${STAGE_TEMP}/${includedir}/* ${STAGING_INCDIR}/db4 + cp -pPRf ${STAGE_TEMP}/${includedir}/* ${STAGING_INCDIR}/db4 rm -rf ${STAGE_TEMP} oe_libinstall -so -C .libs libdb-4.3 ${STAGING_LIBDIR} } |