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/ixp-osal_2.1.1.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/ixp-osal_2.1.1.bb')
-rw-r--r-- | packages/ixp4xx/ixp-osal_2.1.1.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/ixp4xx/ixp-osal_2.1.1.bb b/packages/ixp4xx/ixp-osal_2.1.1.bb index 926d720f3a..02206fb3cf 100644 --- a/packages/ixp4xx/ixp-osal_2.1.1.bb +++ b/packages/ixp4xx/ixp-osal_2.1.1.bb @@ -80,9 +80,9 @@ do_stage () { # First the include files, maintain the tree structure (ixp4xx-csr # expects the exact same tree) - cp -rf --dereference include ${OSAL_DIR} + cp -RLf include ${OSAL_DIR} install -d ${OSAL_DIR}/os/linux - cp -rf --dereference os/linux/include ${OSAL_DIR}/os/linux + cp -RLf os/linux/include ${OSAL_DIR}/os/linux # Install the library/object install -d ${OSAL_DIR}/${OSAL_PATH} |