aboutsummaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorTom Rini <tom_rini@mentor.com>2010-08-04 09:41:38 -0700
committerTom Rini <tom_rini@mentor.com>2010-08-04 09:41:38 -0700
commit96cad6d46fef45e07ca5b7186e2f8551b83238b7 (patch)
tree08921406faa438a698806c83e569aa9a8888dec5 /conf
parent6b53fcad4f2af012e762bbf6450831857ca29373 (diff)
downloadopenembedded-96cad6d46fef45e07ca5b7186e2f8551b83238b7.tar.gz
bitbake.conf: Don't export 'LIBC' to the environment
perl makes use of this variable and it doesn't match how we use it. Since it doesn't need to be exposed like this, don't. No acks, but "sounds good" to Koen and "don't see why not" from Roman Signed-off-by: Tom Rini <tom_rini@mentor.com>
Diffstat (limited to 'conf')
-rw-r--r--conf/bitbake.conf3
1 files changed, 3 insertions, 0 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf
index 8ddba150e1..21f201e161 100644
--- a/conf/bitbake.conf
+++ b/conf/bitbake.conf
@@ -798,3 +798,6 @@ TARGET_ARCH[unexport] = "1"
# (breaks sysvinit at least)
DISTRO[unexport] = "1"
+# Make sure that LIBC isn't exported
+# (breaks perl at least)
+LIBC[unexport] = "1"