mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 03:32:12 +02:00
icecc: Don't use icecc when INHIBIT_DEFAULT_DEPS is set
We don't have a compiler, so no icecc.
Silences a spew of warnings of the form:
do_configure: Cannot use icecc: could not get ICECC_CC or ICECC_CXX
(From OE-Core rev: 0315aabeff8e6483b737d0e23d6841f1394ad3c8)
Signed-off-by: Douglas Royds <douglas.royds@taitradio.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
fb427f4f5c
commit
8946c65c8f
@@ -138,6 +138,10 @@ def use_icecc(bb,d):
|
||||
if icecc_is_cross_canadian(bb, d):
|
||||
return "no"
|
||||
|
||||
if d.getVar('INHIBIT_DEFAULT_DEPS', False):
|
||||
# We don't have a compiler, so no icecc
|
||||
return "no"
|
||||
|
||||
pn = d.getVar('PN')
|
||||
bpn = d.getVar('BPN')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user