diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2008-12-10 14:06:50 +0100 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2008-12-10 14:07:40 +0100 |
commit | 34df29096d824847f61af10811c51581e8c9b458 (patch) | |
tree | 50283721ce76b682754b2f616d668bfaae5b3488 /packages/shasum | |
parent | 0235f8dee81f104a41aac70e632b40dc3a6e707d (diff) |
shasum-native: install is as executable
Diffstat (limited to 'packages/shasum')
-rw-r--r-- | packages/shasum/shasum-native.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/shasum/shasum-native.bb b/packages/shasum/shasum-native.bb index a28d5ac967..fab6244f71 100644 --- a/packages/shasum/shasum-native.bb +++ b/packages/shasum/shasum-native.bb @@ -8,5 +8,5 @@ PATCHTOOL = "patch" do_fetch[depends] = "" do_stage() { install -d ${STAGING_BINDIR} - install ${S}/oe_sha256sum ${STAGING_BINDIR} + install -m 0755 ${S}/oe_sha256sum ${STAGING_BINDIR} } |