diff options
author | Joshua Watt <jpewhacker@gmail.com> | 2018-12-03 21:15:36 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-12-05 12:37:02 +0000 |
commit | 645493af37e9dcd7d97cf308e41f8536ddfcd574 (patch) | |
tree | 23991b24e4ded9357c78ed77cbdc86fcb24f7c64 /meta/classes/icecc.bbclass | |
parent | 2e7141a78558b7dae34db1f29f0a6943b4ae948b (diff) | |
download | poky-645493af37e9dcd7d97cf308e41f8536ddfcd574.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>
Diffstat (limited to 'meta/classes/icecc.bbclass')
-rw-r--r-- | meta/classes/icecc.bbclass | 2 |
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" |