From 759542d7c98a220db6ab4a76556237ef734a5129 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Mon, 16 Feb 2009 21:06:18 -0500 Subject: gcc-common.inc: Make my last change to fpu check catch all linux variants --- packages/gcc/gcc-common.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "" -- cgit v1.2.3