diff options
-rw-r--r-- | meta-moblin/packages/boost/boost-jam-native.inc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta-moblin/packages/boost/boost-jam-native.inc b/meta-moblin/packages/boost/boost-jam-native.inc index 843f912f4..5293ea5e0 100644 --- a/meta-moblin/packages/boost/boost-jam-native.inc +++ b/meta-moblin/packages/boost/boost-jam-native.inc @@ -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}/ } |