summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/glibc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/glibc')
-rw-r--r--meta/recipes-core/glibc/glibc_2.21.bb8
1 files changed, 3 insertions, 5 deletions
diff --git a/meta/recipes-core/glibc/glibc_2.21.bb b/meta/recipes-core/glibc/glibc_2.21.bb
index fcef4ff3e5..58a9601034 100644
--- a/meta/recipes-core/glibc/glibc_2.21.bb
+++ b/meta/recipes-core/glibc/glibc_2.21.bb
@@ -68,11 +68,9 @@ GLIBC_BROKEN_LOCALES = " _ER _ET so_ET yn_ER sid_ET tr_TR mn_MN gez_ET gez_ER bn
68# this helps in easing out parsing for non-glibc system libraries 68# this helps in easing out parsing for non-glibc system libraries
69# 69#
70python __anonymous () { 70python __anonymous () {
71 import re 71 if d.getVar('TCLIBC', True) != "glibc":
72 notglibc = (re.match('.*uclibc$', d.getVar('TARGET_OS', True)) != None) or (re.match('.*musl$', d.getVar('TARGET_OS', True)) != None) 72 raise bb.parse.SkipPackage("incompatible with %s C library" %
73 if notglibc: 73 d.getVar('TCLIBC', True))
74 raise bb.parse.SkipPackage("incompatible with target %s" %
75 d.getVar('TARGET_OS', True))
76} 74}
77 75
78EXTRA_OECONF = "--enable-kernel=${OLDEST_KERNEL} \ 76EXTRA_OECONF = "--enable-kernel=${OLDEST_KERNEL} \