aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2006-09-14 11:18:52 +0000
committerKoen Kooi <koen@openembedded.org>2006-09-14 11:18:52 +0000
commit54ef07897ac9cadb8d291dc05e4494ba68695411 (patch)
tree01b250ce92656a2b52dd080be9a36fae9a57d459 /packages
parent9922027b3582365d4c6540faa51b08b4a762d88e (diff)
parentae0539c18ae8fc1b69affea460f66682cf7ffe62 (diff)
downloadopenembedded-54ef07897ac9cadb8d291dc05e4494ba68695411.tar.gz
merge of '178ad077ac028be1b22bf39a8144558596dbb686'
and 'f7550674270fdfc2af92801ae59716d552b9120b'
Diffstat (limited to 'packages')
-rw-r--r--packages/glibc/glibc-package.bbclass3
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