diff options
author | Khem Raj <raj.khem@gmail.com> | 2014-08-28 06:13:57 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-09-01 18:03:05 +0100 |
commit | 09e3e78999b0006d780d6a6dff26b23028fc1303 (patch) | |
tree | 50d11b7325b1a2bfcb81efa6fcc53550b7ce4411 /meta/recipes-devtools/gcc | |
parent | 573b7436accfdda51397fc97e20b26253e9c699c (diff) | |
download | poky-09e3e78999b0006d780d6a6dff26b23028fc1303.tar.gz |
recipes: Remove references to eglibc
change use of eglibc related variabled to glibc equivalents
(From OE-Core rev: fd15d6e0c8da75951a91d4467eda23c229b1026d)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-common.inc | 2 |
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 497d06ae8b..b50cc1d06a 100644 --- a/meta/recipes-devtools/gcc/gcc-common.inc +++ b/meta/recipes-devtools/gcc/gcc-common.inc | |||
@@ -26,7 +26,7 @@ def get_gcc_mips_plt_setting(bb, d): | |||
26 | return "" | 26 | return "" |
27 | 27 | ||
28 | def get_long_double_setting(bb, d): | 28 | def get_long_double_setting(bb, d): |
29 | if d.getVar('TRANSLATED_TARGET_ARCH', True) in [ 'powerpc', 'powerpc64' ] and d.getVar('TCLIBC', True) in [ 'uclibc', 'eglibc' ]: | 29 | if d.getVar('TRANSLATED_TARGET_ARCH', True) in [ 'powerpc', 'powerpc64' ] and d.getVar('TCLIBC', True) in [ 'uclibc', 'glibc' ]: |
30 | return "--with-long-double-128" | 30 | return "--with-long-double-128" |
31 | return "" | 31 | return "" |
32 | 32 | ||