From: Tom Rini Date: Tue, 17 Feb 2009 02:06:18 +0000 (-0500) Subject: gcc-common.inc: Make my last change to fpu check catch all linux variants X-Git-Tag: Release-2010-05/1~3975^2~19 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=759542d7c98a220db6ab4a76556237ef734a5129;p=openembedded.git gcc-common.inc: Make my last change to fpu check catch all linux variants --- diff --git a/packages/gcc/gcc-common.inc b/packages/gcc/gcc-common.inc index 9e70af71a5..6e777e6be2 100644 --- a/packages/gcc/gcc-common.inc +++ b/packages/gcc/gcc-common.inc @@ -11,7 +11,7 @@ FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/gcc-${PV}" # for building for the new host part. So only obey TARGET_FPU for the # real target. def get_gcc_fpu_setting(bb, d): - if bb.data.getVar('TARGET_FPU', d, 1) in [ 'soft' ] and bb.data.getVar('TARGET_OS', d, 1) in [ 'linux' ]: + if bb.data.getVar('TARGET_FPU', d, 1) in [ 'soft' ] and bb.data.getVar('TARGET_OS', d, 1).find('linux') >= 0 : return "--with-float=soft" return ""