From 158d613614e3de641c89918e213c17656bd57a27 Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Fri, 14 May 2010 20:25:14 +0200 Subject: signgp-native: convert to new-style staging --- recipes/x-load/signgp-native.bb | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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" -- cgit v1.2.3