aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shasum
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@rpsys.net>2007-12-01 19:47:29 +0000
committerRichard Purdie <rpurdie@rpsys.net>2007-12-01 19:47:29 +0000
commitd671d4a81e19474c5c84104e22dc3546e912afe3 (patch)
tree35286cd0312868d2dc67c86b64bedca8b2d184e8 /packages/shasum
parentbf7e08944ebd0de7eac563e64237e180d646467d (diff)
downloadopenembedded-d671d4a81e19474c5c84104e22dc3546e912afe3.tar.gz
shasum-native: Use do_stage as other recipes do, make sure directory exists before installing binary
Diffstat (limited to 'packages/shasum')
-rw-r--r--packages/shasum/shasum-native.bb3
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}
}