diff options
author | Khem Raj <raj.khem@gmail.com> | 2011-11-30 19:07:07 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-12-01 16:54:07 +0000 |
commit | bf45449f1aeb98498c0194dbf60ed98af3feca75 (patch) | |
tree | 8a41d0660244bcbc123b3907456f3f3020b18413 /meta/classes/native.bbclass | |
parent | f9e56d0ba42ebaee70fec01e48dda1cb040d9090 (diff) | |
download | poky-bf45449f1aeb98498c0194dbf60ed98af3feca75.tar.gz |
classes, conf: Exclude native and nativesdk recipes from libc specific override
Based on suggestions from RP
libc-uclibc and libc-glibc overrides are for denoting
system C library in use on the target and not for the
host therefore we make sure that the override only takes
effect for target recipes only.
(From OE-Core rev: 6e2b53f47da0e97271fb51b281d24da1e1d549cc)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/native.bbclass')
-rw-r--r-- | meta/classes/native.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass index 8f7cc1f2d3..49823d6fc6 100644 --- a/meta/classes/native.bbclass +++ b/meta/classes/native.bbclass | |||
@@ -92,6 +92,9 @@ EXTRA_NATIVE_PKGCONFIG_PATH ?= "" | |||
92 | PKG_CONFIG_PATH .= "${EXTRA_NATIVE_PKGCONFIG_PATH}" | 92 | PKG_CONFIG_PATH .= "${EXTRA_NATIVE_PKGCONFIG_PATH}" |
93 | PKG_CONFIG_SYSROOT_DIR = "" | 93 | PKG_CONFIG_SYSROOT_DIR = "" |
94 | 94 | ||
95 | # we dont want libc-uclibc or libc-glibc to kick in for native recipes | ||
96 | LIBCOVERRIDE = "" | ||
97 | |||
95 | PATH =. "${COREBASE}/scripts/native-intercept:" | 98 | PATH =. "${COREBASE}/scripts/native-intercept:" |
96 | 99 | ||
97 | python native_virtclass_handler () { | 100 | python native_virtclass_handler () { |