boost-jam-native: Use do_install for staging

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie 2009-11-18 00:12:12 +00:00
parent 84a7f89bbf
commit dd9e54df3e
1 changed files with 4 additions and 2 deletions

View 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}/
}