]> code.ossystems Code Review - openembedded-core.git/commitdiff
classes/icecc.bbclass: Fix ccache disable
authorJoshua Watt <jpewhacker@gmail.com>
Tue, 4 Dec 2018 03:15:36 +0000 (21:15 -0600)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 5 Dec 2018 12:28:55 +0000 (12:28 +0000)
The ccache disable flag was misspelled, preventing it from being
disabled.

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/icecc.bbclass

index 3f04a1b63af9f0bd35bb6f32ad25ed810f8f381a..2b189232cb7322e761695d5fc03368079302adc5 100644 (file)
@@ -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"