aboutsummaryrefslogtreecommitdiffstats
path: root/packages/gcc
diff options
context:
space:
mode:
authorTom Rini <trini@embeddedalley.com>2009-02-16 21:06:18 -0500
committerTom Rini <trini@embeddedalley.com>2009-02-16 21:06:18 -0500
commit759542d7c98a220db6ab4a76556237ef734a5129 (patch)
treec1e3defd8044e6aac554e4b98961af0e6f715bdc /packages/gcc
parent60719a8b47fb1de80be3e666d07157133286a7f2 (diff)
downloadopenembedded-759542d7c98a220db6ab4a76556237ef734a5129.tar.gz
gcc-common.inc: Make my last change to fpu check catch all linux variants
Diffstat (limited to 'packages/gcc')
-rw-r--r--packages/gcc/gcc-common.inc2
1 files changed, 1 insertions, 1 deletions
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 ""