diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2011-09-21 22:39:48 +0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-22 05:09:02 +0100 |
commit | 83f9ebe9afb8bec4531899f8001a585c974e1db4 (patch) | |
tree | 23116370ca4110b245d1e4c488c54b1d43189c2d /meta/classes/icecc.bbclass | |
parent | 1da01664963b9c6a6df171dcd0fbb1406544035b (diff) | |
download | openembedded-core-83f9ebe9afb8bec4531899f8001a585c974e1db4.tar.gz openembedded-core-83f9ebe9afb8bec4531899f8001a585c974e1db4.tar.bz2 openembedded-core-83f9ebe9afb8bec4531899f8001a585c974e1db4.zip |
icecc-create-env: rename to -native
icecc-create-env(-native) is a native package. But if it doesn't have
the -native suffix, some dependency tracking stuff in oe-core (in
nativesdk.bbclass) get's crazy about it, trying to generate dependencies
to icecc-create-env-native packages. To fix that simply add -native
suffix to this package.
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/icecc.bbclass')
-rw-r--r-- | meta/classes/icecc.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/icecc.bbclass b/meta/classes/icecc.bbclass index e20666b743..710d7982ca 100644 --- a/meta/classes/icecc.bbclass +++ b/meta/classes/icecc.bbclass @@ -33,7 +33,7 @@ def icecc_dep_prepend(d): # we need that built is the responsibility of the patch function / class, not # the application. if not bb.data.getVar('INHIBIT_DEFAULT_DEPS', d): - return "icecc-create-env" + return "icecc-create-env-native" return "" DEPENDS_prepend += "${@icecc_dep_prepend(d)} " |