diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-18 00:12:12 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-18 00:12:12 +0000 |
commit | dd9e54df3e4b8ebf6a44ad537f0aef8f627960d8 (patch) | |
tree | 03d5bf1c7b00d01a1c2c0851a69929b9cd3379cf /meta-moblin | |
parent | 84a7f89bbf83b599f36e3788da3ca640edf7f717 (diff) | |
download | poky-dd9e54df3e4b8ebf6a44ad537f0aef8f627960d8.tar.gz |
boost-jam-native: Use do_install for staging
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta-moblin')
-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 843f912f46..5293ea5e09 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() { | |||
21 | ./build.sh gcc | 21 | ./build.sh gcc |
22 | } | 22 | } |
23 | 23 | ||
24 | NATIVE_INSTALL_WORKS = "1" | ||
24 | # This is too terrible - the build script doesn't give any good | 25 | # This is too terrible - the build script doesn't give any good |
25 | # way I can see to find out where the binaries are placed, so | 26 | # way I can see to find out where the binaries are placed, so |
26 | # rely on only one bin.foo directory being created. | 27 | # rely on only one bin.foo directory being created. |
27 | do_stage() { | 28 | do_install () { |
28 | set -ex | 29 | set -ex |
29 | install -c -m 755 bin.*/bjam ${STAGING_BINDIR}/ | 30 | install -d ${D}${bindir}/ |
31 | install -c -m 755 bin.*/bjam ${D}${bindir}/ | ||
30 | } | 32 | } |