diff options
author | Phil Blundell <philb@gnu.org> | 2004-08-21 20:06:11 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-08-21 20:06:11 +0000 |
commit | adbfd236b5032e1a56fa7fdb50ec00feee6999da (patch) | |
tree | 551510f06c403f6dd1db47745ab882915c9f834e /sharp-binary-only | |
parent | 8f0e92c15a77e3d398467ec3c8923590f7728827 (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into workhouse.nexus.co.uk:/home/pb/oe/oe-packages
2004/08/21 21:05:48+01:00 nexus.co.uk!pb
use 'install -m 0644' to avoid permissions drama
BKrev: 4127ab33s11h99LO0zibYt9neCElLA
Diffstat (limited to 'sharp-binary-only')
-rw-r--r-- | sharp-binary-only/sharp-flash-header-c700.oe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sharp-binary-only/sharp-flash-header-c700.oe b/sharp-binary-only/sharp-flash-header-c700.oe index 764ebbf965..149b3fdee4 100644 --- a/sharp-binary-only/sharp-flash-header-c700.oe +++ b/sharp-binary-only/sharp-flash-header-c700.oe @@ -1,6 +1,6 @@ SRC_URI = "file://header-c700.bin" do_stage() { - mkdir -p ${STAGING_LIBDIR}/sharp-flash-header - cp -a ${WORKDIR}/header-c700.bin ${STAGING_LIBDIR}/sharp-flash-header/header-c700.bin + install -d ${STAGING_LIBDIR}/sharp-flash-header + install -m 0644 ${WORKDIR}/header-c700.bin ${STAGING_LIBDIR}/sharp-flash-header/header-c700.bin } |