diff options
Diffstat (limited to 'meta/classes/libc-common.bbclass')
| -rw-r--r-- | meta/classes/libc-common.bbclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/libc-common.bbclass b/meta/classes/libc-common.bbclass index ec33762a20..962f205f81 100644 --- a/meta/classes/libc-common.bbclass +++ b/meta/classes/libc-common.bbclass | |||
| @@ -18,13 +18,13 @@ do_install() { | |||
| 18 | } | 18 | } |
| 19 | 19 | ||
| 20 | def get_libc_fpu_setting(bb, d): | 20 | def get_libc_fpu_setting(bb, d): |
| 21 | if d.getVar('TARGET_FPU', 1) in [ 'soft' ]: | 21 | if d.getVar('TARGET_FPU', True) in [ 'soft' ]: |
| 22 | return "--without-fp" | 22 | return "--without-fp" |
| 23 | return "" | 23 | return "" |
| 24 | 24 | ||
| 25 | python populate_packages_prepend () { | 25 | python populate_packages_prepend () { |
| 26 | if d.getVar('DEBIAN_NAMES', 1): | 26 | if d.getVar('DEBIAN_NAMES', True): |
| 27 | bpn = d.getVar('BPN', 1) | 27 | bpn = d.getVar('BPN', True) |
| 28 | d.setVar('PKG_'+bpn, 'libc6') | 28 | d.setVar('PKG_'+bpn, 'libc6') |
| 29 | d.setVar('PKG_'+bpn+'-dev', 'libc6-dev') | 29 | d.setVar('PKG_'+bpn+'-dev', 'libc6-dev') |
| 30 | } | 30 | } |
