diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2006-11-29 11:34:04 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2006-11-29 11:34:04 +0000 |
commit | 081432e434818a616a523f9f2bb18e707e4e68e3 (patch) | |
tree | 66e473e317db4a0f1056c474b26fdefde6e6ec6e /classes/ccdv.bbclass | |
parent | 12bb4c41c375d36b596ba4eb0a9c8ce1d6ace10e (diff) |
Introduce STAGING_BINDIR_CROSS and STAGING_BINDIR_NATIVE as discussed on the mailing list. There should be no functionality changes yet.
Diffstat (limited to 'classes/ccdv.bbclass')
-rw-r--r-- | classes/ccdv.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/ccdv.bbclass b/classes/ccdv.bbclass index a28ea672e5..8c8306cbf1 100644 --- a/classes/ccdv.bbclass +++ b/classes/ccdv.bbclass @@ -10,7 +10,7 @@ python () { def quiet_libtool(bb,d): deps = (bb.data.getVar('DEPENDS', d, 1) or "").split() if 'libtool-cross' in deps: - return "'LIBTOOL=${STAGING_BINDIR}/${HOST_SYS}-libtool --silent'" + return "'LIBTOOL=${STAGING_BINDIR_NATIVE}/${HOST_SYS}-libtool --silent'" elif 'libtool-native' in deps: return "'LIBTOOL=${B}/${HOST_SYS}-libtool --silent'" else: |