summaryrefslogtreecommitdiffstats
path: root/meta
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:14:44 +0000
commitee036060a876a02d15e20a5eee5a2f0aaffdd290 (patch)
treeb50e2059de12b3ec5f07d8a6188dafb2dcbe12c2 /meta
parent436b5ceca461f9c4bed7f94d33ede0506f8e026c (diff)
downloadpoky-ee036060a876a02d15e20a5eee5a2f0aaffdd290.tar.gz
classes/icecc.bbclass: Fix ccache disable
The ccache disable flag was misspelled, preventing it from being disabled. (From OE-Core rev: 33fba601a7365aced9f4b206c1fadda997076d4c) (From OE-Core rev: aefa930d9cfcdc32ba9411311f269e005e5372e0) 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> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-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() {
398 # Don't let ccache find the icecream compiler links that have been created, otherwise 398 # Don't let ccache find the icecream compiler links that have been created, otherwise
399 # it can end up invoking icecream recursively. 399 # it can end up invoking icecream recursively.
400 export CCACHE_PATH="$PATH" 400 export CCACHE_PATH="$PATH"
401 export CCACHE_DISBALE="1" 401 export CCACHE_DISABLE="1"
402 402
403 export ICECC_VERSION ICECC_CC ICECC_CXX 403 export ICECC_VERSION ICECC_CC ICECC_CXX
404 export PATH="$ICE_PATH:$PATH" 404 export PATH="$ICE_PATH:$PATH"