aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorJoshua Watt <jpewhacker@gmail.com>2018-12-03 21:15:36 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-01-08 20:12:10 +0000
commitaefa930d9cfcdc32ba9411311f269e005e5372e0 (patch)
treee8cd59d9728e50dddea496f3baf8226562bffb16 /meta/classes
parent1d0eb08f016db5d5ab08b37dea654950731fcab3 (diff)
downloadopenembedded-core-contrib-aefa930d9cfcdc32ba9411311f269e005e5372e0.tar.gz
classes/icecc.bbclass: Fix ccache disable
The ccache disable flag was misspelled, preventing it from being disabled. (From OE-Core rev: 33fba601a7365aced9f4b206c1fadda997076d4c) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/icecc.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/icecc.bbclass b/meta/classes/icecc.bbclass
index 3f04a1b63a..2b189232cb 100644
--- a/meta/classes/icecc.bbclass
+++ b/meta/classes/icecc.bbclass
@@ -398,7 +398,7 @@ set_icecc_env() {
# Don't let ccache find the icecream compiler links that have been created, otherwise
# it can end up invoking icecream recursively.
export CCACHE_PATH="$PATH"
- export CCACHE_DISBALE="1"
+ export CCACHE_DISABLE="1"
export ICECC_VERSION ICECC_CC ICECC_CXX
export PATH="$ICE_PATH:$PATH"