diff options
author | Holger Freyther <zecke@selfish.org> | 2007-12-23 00:23:57 +0000 |
---|---|---|
committer | Holger Freyther <zecke@selfish.org> | 2007-12-23 00:23:57 +0000 |
commit | 6e715d8f2561a8fac492cc10528102608c64eb74 (patch) | |
tree | e862647ff900034f08bfc6d1f7920d858bc63451 /packages/linux/linux-efika_2.6.20.bb | |
parent | a31bd35ef6affae2aa03832b261a19803ff4ed77 (diff) |
Remove some GNUism and replace cp -a with cp -pPR (once again)
I didn't touch the to be installed files, as we have GNU coreutils or
at least a compatible busybox version on our targets so far.
Diffstat (limited to 'packages/linux/linux-efika_2.6.20.bb')
-rw-r--r-- | packages/linux/linux-efika_2.6.20.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/linux/linux-efika_2.6.20.bb b/packages/linux/linux-efika_2.6.20.bb index ddf3ee3257..87c769a1ae 100644 --- a/packages/linux/linux-efika_2.6.20.bb +++ b/packages/linux/linux-efika_2.6.20.bb @@ -60,12 +60,12 @@ do_stage_append () { #need ppc platforms includes + friends in order for external kernel modules to compile as headers as still split install -d ${STAGING_KERNEL_DIR}/arch/ - cp -a arch/ppc ${STAGING_KERNEL_DIR}/arch/ - cp -a arch/powerpc ${STAGING_KERNEL_DIR}/arch/ + cp -pPR arch/ppc ${STAGING_KERNEL_DIR}/arch/ + cp -pPR arch/powerpc ${STAGING_KERNEL_DIR}/arch/ install -d ${STAGING_KERNEL_DIR}/include/asm - cp -a include/asm-powerpc ${STAGING_KERNEL_DIR}/include/ - cp -a include/asm-ppc ${STAGING_KERNEL_DIR}/include/ + cp -pPR include/asm-powerpc ${STAGING_KERNEL_DIR}/include/ + cp -pPR include/asm-ppc ${STAGING_KERNEL_DIR}/include/ } |