diff options
author | Holger Freyther <zecke@selfish.org> | 2005-09-19 13:07:59 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-09-19 13:07:59 +0000 |
commit | 9a51b40bd6dc85714c12d9950e9e94e18d145e05 (patch) | |
tree | e2822ad4283e44bb459dc0c1eeaaf7a6c5a35826 /packages/python | |
parent | 1b8721cb33470559a5ce5059fba73acc321fa8e8 (diff) |
Make cp invocations BSD compatible
Diffstat (limited to 'packages/python')
-rw-r--r-- | packages/python/python-numeric_23.7.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/python/python-numeric_23.7.bb b/packages/python/python-numeric_23.7.bb index 2fc0e8873c..e06934ece8 100644 --- a/packages/python/python-numeric_23.7.bb +++ b/packages/python/python-numeric_23.7.bb @@ -12,6 +12,6 @@ S = "${WORKDIR}/Numeric-${PV}" inherit distutils do_stage() { - cp -a Include/Numeric ${STAGING_INCDIR} + cp -pPR Include/Numeric ${STAGING_INCDIR} } |