summaryrefslogtreecommitdiff
path: root/classes/dietlibc.bbclass
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@datenfreihafen.org>2009-10-10 01:05:29 +0200
committerStefan Schmidt <stefan@datenfreihafen.org>2009-10-10 01:05:29 +0200
commit4f70e483520b258efa14cc36f27e85ffff0c86d9 (patch)
tree1ca8e564cdf91fc0aca03869b9cb09bd27a388c2 /classes/dietlibc.bbclass
parent2208b42bea7850513d9df8f1edbfad1df083c5ad (diff)
parent1aadd3a3f4f2788f85b427bc7221f7c3bf0a7cd7 (diff)
Merge branch 'org.openembedded.dev' of git.openembedded.org:openembedded into org.openembedded.dev
Diffstat (limited to 'classes/dietlibc.bbclass')
-rw-r--r--classes/dietlibc.bbclass12
1 files changed, 6 insertions, 6 deletions
diff --git a/classes/dietlibc.bbclass b/classes/dietlibc.bbclass
index 7c7b5fec81..2676385197 100644
--- a/classes/dietlibc.bbclass
+++ b/classes/dietlibc.bbclass
@@ -4,18 +4,18 @@ def dietlibc_after_parse(d):
import bb
# Remove the NLS
cfg = oe_filter_out('--(dis|en)able-nls', bb.data.getVar('EXTRA_OECONF', d, 1) or "", d)
- # Remove shared and static and set it right
- cfg += " --disable-nls --disbale-shared --enable-static"
+ # Remove shared enable static only
+ cfg += " --disable-nls --disable-shared --enable-static"
bb.data.setVar('EXTRA_OECONF', cfg, d)
cfg = bb.data.getVar('EXTRA_OEMAKE', d, 1) or ""
cfg = oe_filter_out("\'CC=", bb.data.getVar('EXTRA_OEMAKE', d, 1) or "", d)
- cfgtmp = "\'CC=diet ${CCACHE}"
+ cfgtmp = "\'CC=\"diet ${CCACHE}\""
cfgtmp += cfg
bb.data.setVar('EXTRA_OEMAKE', cfgtmp, d)
-python () {
- dietlibc_after_parse(d)
-}
+#python () {
+# dietlibc_after_parse(d)
+#}
set_dietlibc_env () {
export CC="diet ${CC}"