git.openpandora.org
/
openembedded.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6b53fca
)
bitbake.conf: Don't export 'LIBC' to the environment
author
Tom Rini
<tom_rini@mentor.com>
Wed, 4 Aug 2010 16:41:38 +0000
(09:41 -0700)
committer
Tom Rini
<tom_rini@mentor.com>
Wed, 4 Aug 2010 16:41:38 +0000
(09:41 -0700)
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>
conf/bitbake.conf
patch
|
blob
|
history
diff --git
a/conf/bitbake.conf
b/conf/bitbake.conf
index
8ddba15
..
21f201e
100644
(file)
--- 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"