diff options
-rw-r--r-- | meta/classes/icecc.bbclass | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/classes/icecc.bbclass b/meta/classes/icecc.bbclass index ae74050f6b7..f3e89a9747a 100644 --- a/meta/classes/icecc.bbclass +++ b/meta/classes/icecc.bbclass @@ -26,6 +26,8 @@ #Error checking is kept to minimum so double check any parameters you pass to the class ########################################################################################### +BB_HASHBASE_WHITELIST += "ICECC_PARALLEL_MAKE ICECC_DISABLED" + ICECC_ENV_EXEC ?= "${STAGING_BINDIR_NATIVE}/icecc-create-env" def icecc_dep_prepend(d): @@ -160,6 +162,10 @@ def icc_get_tool(bb, d, tool): return os.path.join(ice_dir, "%s-%s" % (target_sys, tool)) set_icecc_env() { + if [ "x${ICECC_DISABLED}" != "x" ] + then + return + fi ICECC_VERSION="${@icc_version(bb, d)}" if [ "x${ICECC_VERSION}" = "x" ] then |