mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 12:32:12 +02:00
EXTRA_OECONF = "--disable-python" overrode the previous EXTRA_OECONF assignment, so softfloat didn't get enabled when needed. Fixed this by replacing "=" with "+=". Bitbake then complained about tabs in alsa-fpu.inc, changed them to spaces. (From OE-Core rev: 1ed6f860de22321342404a49ba78658153ff5eb8) Signed-off-by: Tanu Kaskinen <tanuk@iki.fi> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
5 lines
126 B
PHP
5 lines
126 B
PHP
def get_alsa_fpu_setting(bb, d):
|
|
if d.getVar('TARGET_FPU') in [ 'soft' ]:
|
|
return "--with-softfloat"
|
|
return ""
|