python-native_2.6.1.bb: Unset LIBC
authorKhem Raj <raj.khem@gmail.com>
Wed, 5 Aug 2009 21:38:23 +0000 (14:38 -0700)
committerKhem Raj <raj.khem@gmail.com>
Wed, 5 Aug 2009 21:38:23 +0000 (14:38 -0700)
LIBC is used internally by python configure if it gets it from
enviromment it honors it. Coincidently we also use LIBC in OE
to denote one of uclibc eglibc or glibc to be system C library
It conflicts if somehow LIBC=<something> is set in the envronment
so we pass empty LIBC for native recipe.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
recipes/python/python-native_2.6.1.bb

index 00d87e6..cc949e1 100644 (file)
@@ -1,7 +1,7 @@
 require python.inc
 DEPENDS = "openssl-native bzip2-full-native zlib-native readline-native"
 
-PR .= ".1"
+PR .= ".2"
 
 SRC_URI = "\
   http://www.python.org/ftp/python/${PV}/Python-${PV}.tar.bz2 \
@@ -21,6 +21,7 @@ exec_prefix = "${STAGING_DIR_NATIVE}/${layout_exec_prefix}"
 EXTRA_OEMAKE = '\
   BUILD_SYS="" \
   HOST_SYS="" \
+  LIBC="" \
   STAGING_LIBDIR=${STAGING_LIBDIR_NATIVE} \
   STAGING_INCDIR=${STAGING_INCDIR_NATIVE} \
 '