diff options
author | Julian_chu <julian_chu@openmoko.com> | 2008-10-20 17:15:28 +0800 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2008-11-16 00:37:34 +0100 |
commit | 549cdee30cca91d04c23c35ca998ef5033192f5e (patch) | |
tree | a8e2511457f9ccdb72b901aae088b7f1a45cf79d /classes | |
parent | 69262d0895519db1aeb350405efaa077dffb7bc7 (diff) |
[icecc.bbclass] Add connman into blacklist
Disable icecc to pass compiling
Diffstat (limited to 'classes')
-rw-r--r-- | classes/icecc.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/icecc.bbclass b/classes/icecc.bbclass index b5a858bb1f..7222f6b349 100644 --- a/classes/icecc.bbclass +++ b/classes/icecc.bbclass @@ -251,7 +251,7 @@ def icc_path(bb,d): #"system" package blacklist contains a list of packages that can not distribute compile tasks #for one reason or the other - system_package_blacklist = [ "uclibc", "glibc", "gcc", "qemu", "bind", "u-boot", "dhcp-forwarder", "enchant" ] + system_package_blacklist = [ "uclibc", "glibc", "gcc", "qemu", "bind", "u-boot", "dhcp-forwarder", "enchant", "connman" ] user_package_blacklist = (bb.data.getVar('ICECC_USER_PACKAGE_BL', d) or "").split() package_blacklist = system_package_blacklist + user_package_blacklist |