summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKartik Mohta <kartikmohta@gmail.com>2012-07-03 23:21:07 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-09 16:58:56 +0100
commitd0900924a6a2e08a200eecab1583a09bb2bd64f0 (patch)
tree605acfbcc9b1f094cd804e67ec45b272170709d3
parente557af571078f2441acaafe4e9648900cfcac6f7 (diff)
downloadpoky-d0900924a6a2e08a200eecab1583a09bb2bd64f0.tar.gz
gcc-common: Don't use "is" for comparing strings, use "=="
Needed because the equality check was failing here even though upon printing the LHS and RHS were the same. As per http://stackoverflow.com/a/2987975/64537, using "is" compares the memory addresses of the two objects which is not what we want here. We just want to compare the values. (From OE-Core rev: 7fd82cc90a48302ed42b6bfa962bb0de2c652b45) Signed-off-by: Kartik Mohta <kartikmohta@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/gcc/gcc-common.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-common.inc b/meta/recipes-devtools/gcc/gcc-common.inc
index 45828bb5f5..0a9324aa3c 100644
--- a/meta/recipes-devtools/gcc/gcc-common.inc
+++ b/meta/recipes-devtools/gcc/gcc-common.inc
@@ -10,7 +10,7 @@ inherit autotools gettext
10FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/gcc-${PV}" 10FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/gcc-${PV}"
11 11
12def get_gcc_fpu_setting(bb, d): 12def get_gcc_fpu_setting(bb, d):
13 if d.getVar('ARMPKGSFX_EABI', True) is "hf" and d.getVar('TRANSLATED_TARGET_ARCH', True) is "arm": 13 if d.getVar('ARMPKGSFX_EABI', True) == "hf" and d.getVar('TRANSLATED_TARGET_ARCH', True) == "arm":
14 return "--with-float=hard" 14 return "--with-float=hard"
15 if d.getVar('TARGET_FPU', True) in [ 'soft' ]: 15 if d.getVar('TARGET_FPU', True) in [ 'soft' ]:
16 return "--with-float=soft" 16 return "--with-float=soft"