summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/eglibc/eglibc_2.13.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/eglibc/eglibc_2.13.bb')
-rw-r--r--meta/recipes-core/eglibc/eglibc_2.13.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/eglibc/eglibc_2.13.bb b/meta/recipes-core/eglibc/eglibc_2.13.bb
index 8555985335..e718a1f93e 100644
--- a/meta/recipes-core/eglibc/eglibc_2.13.bb
+++ b/meta/recipes-core/eglibc/eglibc_2.13.bb
@@ -52,10 +52,10 @@ FILESPATH = "${@base_set_filespath([ '${FILE_DIRNAME}/eglibc-${PV}', '${FILE_DIR
52 52
53python __anonymous () { 53python __anonymous () {
54 import bb, re 54 import bb, re
55 uc_os = (re.match('.*uclibc$', d.getVar('TARGET_OS', 1)) != None) 55 uc_os = (re.match('.*uclibc$', d.getVar('TARGET_OS', True)) != None)
56 if uc_os: 56 if uc_os:
57 raise bb.parse.SkipPackage("incompatible with target %s" % 57 raise bb.parse.SkipPackage("incompatible with target %s" %
58 d.getVar('TARGET_OS', 1)) 58 d.getVar('TARGET_OS', True))
59} 59}
60 60
61export libc_cv_slibdir = "${base_libdir}" 61export libc_cv_slibdir = "${base_libdir}"