diff options
author | Koen Kooi <koen@openembedded.org> | 2006-09-14 11:18:29 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2006-09-14 11:18:29 +0000 |
commit | ae0539c18ae8fc1b69affea460f66682cf7ffe62 (patch) | |
tree | 20a3d3cc257b484c70a3d641a58b545bfecf0906 /packages/glibc/glibc-package.bbclass | |
parent | a79589f43a9e6dab1bcd6de681435fe028e7d6bb (diff) |
glibc: adjust check for uclibc
Diffstat (limited to 'packages/glibc/glibc-package.bbclass')
-rw-r--r-- | packages/glibc/glibc-package.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/glibc/glibc-package.bbclass b/packages/glibc/glibc-package.bbclass index ecf086815d..a15d8139d3 100644 --- a/packages/glibc/glibc-package.bbclass +++ b/packages/glibc/glibc-package.bbclass @@ -8,12 +8,13 @@ python __anonymous () { import bb, re - uc_os = (re.match('.*uclibc$', bb.data.getVar('TARGET_OS', d, 1)) != None) + uc_os = (re.match('.*uclibc*', bb.data.getVar('TARGET_OS', d, 1)) != None) if uc_os: raise bb.parse.SkipPackage("incompatible with target %s" % bb.data.getVar('TARGET_OS', d, 1)) } + # Binary locales are generated at build time if ENABLE_BINARY_LOCALE_GENERATION # is set. The idea is to avoid running localedef on the target (at first boot) # to decrease initial boot time and avoid localedef being killed by the OOM |