diff options
author | Richard Purdie <richard@openedhand.com> | 2006-11-25 10:01:30 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-11-25 10:01:30 +0000 |
commit | 4f249a8efbced11400f99c182ef101b7c00e7ba8 (patch) | |
tree | 03766f69c5fd2b6a4d1f3d8936cdf6c6d32b8989 /meta/classes/ccdv.bbclass | |
parent | 82dd73248db6eb9be25db48081a573d7027a204f (diff) | |
download | poky-4f249a8efbced11400f99c182ef101b7c00e7ba8.tar.gz |
Fix STAGING_BINDIR for multimachine use by spliting into STAGING_BINDIR and STAGING_BINDIR_NATIVE and adding both to PATH
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@958 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/ccdv.bbclass')
-rw-r--r-- | meta/classes/ccdv.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/ccdv.bbclass b/meta/classes/ccdv.bbclass index a28ea672e5..8c8306cbf1 100644 --- a/meta/classes/ccdv.bbclass +++ b/meta/classes/ccdv.bbclass | |||
@@ -10,7 +10,7 @@ python () { | |||
10 | def quiet_libtool(bb,d): | 10 | def quiet_libtool(bb,d): |
11 | deps = (bb.data.getVar('DEPENDS', d, 1) or "").split() | 11 | deps = (bb.data.getVar('DEPENDS', d, 1) or "").split() |
12 | if 'libtool-cross' in deps: | 12 | if 'libtool-cross' in deps: |
13 | return "'LIBTOOL=${STAGING_BINDIR}/${HOST_SYS}-libtool --silent'" | 13 | return "'LIBTOOL=${STAGING_BINDIR_NATIVE}/${HOST_SYS}-libtool --silent'" |
14 | elif 'libtool-native' in deps: | 14 | elif 'libtool-native' in deps: |
15 | return "'LIBTOOL=${B}/${HOST_SYS}-libtool --silent'" | 15 | return "'LIBTOOL=${B}/${HOST_SYS}-libtool --silent'" |
16 | else: | 16 | else: |