diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2007-12-01 19:47:29 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2007-12-01 19:47:29 +0000 |
commit | d671d4a81e19474c5c84104e22dc3546e912afe3 (patch) | |
tree | 35286cd0312868d2dc67c86b64bedca8b2d184e8 /packages/shasum/shasum-native.bb | |
parent | bf7e08944ebd0de7eac563e64237e180d646467d (diff) |
shasum-native: Use do_stage as other recipes do, make sure directory exists before installing binary
Diffstat (limited to 'packages/shasum/shasum-native.bb')
-rw-r--r-- | packages/shasum/shasum-native.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/shasum/shasum-native.bb b/packages/shasum/shasum-native.bb index 2b9dd9a09d..a28d5ac967 100644 --- a/packages/shasum/shasum-native.bb +++ b/packages/shasum/shasum-native.bb @@ -6,6 +6,7 @@ INHIBIT_DEFAULT_DEPS = "1" PATCHTOOL = "patch" do_fetch[depends] = "" -do_populate_staging() { +do_stage() { + install -d ${STAGING_BINDIR} install ${S}/oe_sha256sum ${STAGING_BINDIR} } |