From: Koen Kooi Date: Fri, 14 May 2010 18:25:14 +0000 (+0200) Subject: signgp-native: convert to new-style staging X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=158d613614e3de641c89918e213c17656bd57a27;p=openembedded.git signgp-native: convert to new-style staging --- diff --git a/recipes/x-load/signgp-native.bb b/recipes/x-load/signgp-native.bb index 1cbd001932..3b17be3b81 100644 --- a/recipes/x-load/signgp-native.bb +++ b/recipes/x-load/signgp-native.bb @@ -1,6 +1,8 @@ LICENSE = "unknown" DESCRIPTION = "Tool to sign omap3 x-loader images" +PR = "r1" + inherit native SRC_URI = "file://signGP.c" @@ -8,7 +10,9 @@ do_compile() { ${CC} ${WORKDIR}/signGP.c -o signGP } -do_stage() { - install -d ${STAGING_BINDIR_NATIVE} - install -m 0755 signGP ${STAGING_BINDIR_NATIVE} +do_install() { + install -d ${D}${bindir} + install -m 0755 signGP ${D}${bindir} } + +NATIVE_INSTALL_WORKS = "1"