[oe-commits] org.oe.dev glibc: adjust check for uclibc

koen commit openembedded-commits at lists.openembedded.org
Thu Sep 14 11:23:24 UTC 2006


glibc: adjust check for uclibc

Author: koen at openembedded.org
Branch: org.openembedded.dev
Revision: f7550674270fdfc2af92801ae59716d552b9120b
ViewMTN: http://monotone.openembedded.org/revision.psp?id=f7550674270fdfc2af92801ae59716d552b9120b
Files:
1
packages/glibc/glibc-package.bbclass
Diffs:

#
# mt diff -r48ef04347217f482864106eff428115a91d608d0 -rf7550674270fdfc2af92801ae59716d552b9120b
#
# 
# 
# patch "packages/glibc/glibc-package.bbclass"
#  from [3f545af334658860f75f76b54543ccb51c87b38c]
#    to [7fbb91e328761c3eb9a2e8d78cde483b4a025839]
# 
============================================================
--- packages/glibc/glibc-package.bbclass	3f545af334658860f75f76b54543ccb51c87b38c
+++ packages/glibc/glibc-package.bbclass	7fbb91e328761c3eb9a2e8d78cde483b4a025839
@@ -8,12 +8,13 @@ python __anonymous () {
 
 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






More information about the Openembedded-commits mailing list