]> code.ossystems Code Review - openembedded-core.git/commitdiff
boost-jam-native: Use do_install for staging
authorRichard Purdie <rpurdie@linux.intel.com>
Wed, 18 Nov 2009 00:12:12 +0000 (00:12 +0000)
committerRichard Purdie <rpurdie@linux.intel.com>
Wed, 18 Nov 2009 00:12:12 +0000 (00:12 +0000)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
meta-moblin/packages/boost/boost-jam-native.inc

index 843f912f46a9b606fe786f794e137160217280df..5293ea5e0937fae9b4b33ec184d98911faf4cc10 100644 (file)
@@ -21,10 +21,12 @@ do_compile() {
        ./build.sh gcc
 }
 
+NATIVE_INSTALL_WORKS = "1"
 # This is too terrible - the build script doesn't give any good
 # way I can see to find out where the binaries are placed, so
 # rely on only one bin.foo directory being created.
-do_stage() {
+do_install () {
        set -ex
-       install -c -m 755 bin.*/bjam ${STAGING_BINDIR}/
+       install -d ${D}${bindir}/
+       install -c -m 755 bin.*/bjam ${D}${bindir}/
 }