From: Richard Purdie Date: Sat, 1 Dec 2007 19:47:29 +0000 (+0000) Subject: shasum-native: Use do_stage as other recipes do, make sure directory exists before... X-Git-Tag: Release-2010-05/1~8239^2~8^2~2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d671d4a81e19474c5c84104e22dc3546e912afe3;p=openembedded.git shasum-native: Use do_stage as other recipes do, make sure directory exists before installing binary --- 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} }