diff options
author | Holger Freyther <zecke@selfish.org> | 2006-08-06 15:58:51 +0000 |
---|---|---|
committer | Holger Freyther <zecke@selfish.org> | 2006-08-06 15:58:51 +0000 |
commit | 690e9e12869eb453929481ec5f999bff1e36c9b3 (patch) | |
tree | 6238b3682f11c5900081e30f758ac0a1da4304d6 /packages/ixp4xx/ixp4xx-csr_1.4.bb | |
parent | 6608794e72068692b56d77db9b157df28eb691bb (diff) |
packages/*/*.bb: Stop GNUism on cp. -d -> -P, -a -> pPR...
Fix GNUism on the usage of cp
-d as --no-derefence -> -P
--deference -> -L
-r -> -R
-a same as -dpR -> -PpR
Diffstat (limited to 'packages/ixp4xx/ixp4xx-csr_1.4.bb')
-rw-r--r-- | packages/ixp4xx/ixp4xx-csr_1.4.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/ixp4xx/ixp4xx-csr_1.4.bb b/packages/ixp4xx/ixp4xx-csr_1.4.bb index 7146d9e402..286ecf957a 100644 --- a/packages/ixp4xx/ixp4xx-csr_1.4.bb +++ b/packages/ixp4xx/ixp4xx-csr_1.4.bb @@ -54,7 +54,7 @@ do_compile () { do_stage () { install -d ${STAGING_INCDIR}/linux/ixp4xx-csr install -m 0644 src/include/*.h ${STAGING_INCDIR}/linux/ixp4xx-csr/ - cp -rf --dereference src/linux/* ${STAGING_INCDIR}/linux/ixp4xx-csr/ + cp -RLf src/linux/* ${STAGING_INCDIR}/linux/ixp4xx-csr/ } do_install () { |