diff options
Diffstat (limited to 'meta/classes/libc-common.bbclass')
-rw-r--r-- | meta/classes/libc-common.bbclass | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/meta/classes/libc-common.bbclass b/meta/classes/libc-common.bbclass index 8145d64e29..06d520164e 100644 --- a/meta/classes/libc-common.bbclass +++ b/meta/classes/libc-common.bbclass | |||
@@ -23,13 +23,13 @@ def get_libc_fpu_setting(bb, d): | |||
23 | return "" | 23 | return "" |
24 | 24 | ||
25 | python populate_packages_prepend () { | 25 | python populate_packages_prepend () { |
26 | if d.getVar('DEBIAN_NAMES', True): | 26 | if d.getVar('DEBIAN_NAMES', True): |
27 | bpn = d.getVar('BPN', True) | 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 | d.setVar('PKG_'+bpn+'-dbg', 'libc6-dbg') | 30 | d.setVar('PKG_'+bpn+'-dbg', 'libc6-dbg') |
31 | # For backward compatibility with old -dbg package | 31 | # For backward compatibility with old -dbg package |
32 | d.appendVar('RPROVIDES_' + bpn + '-dbg', ' libc-dbg') | 32 | d.appendVar('RPROVIDES_' + bpn + '-dbg', ' libc-dbg') |
33 | d.appendVar('RCONFLICTS_' + bpn + '-dbg', ' libc-dbg') | 33 | d.appendVar('RCONFLICTS_' + bpn + '-dbg', ' libc-dbg') |
34 | d.appendVar('RREPLACES_' + bpn + '-dbg', ' libc-dbg') | 34 | d.appendVar('RREPLACES_' + bpn + '-dbg', ' libc-dbg') |
35 | } | 35 | } |