summaryrefslogtreecommitdiffstats
path: root/meta/classes/gettext.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-11-20 09:16:34 +0000
committerRichard Purdie <richard@openedhand.com>2006-11-20 09:16:34 +0000
commit8aee6b32a09dbbce304018f169eb6623182622c5 (patch)
tree24f1f9de0d57e15e126e840c6905805cbf9386a6 /meta/classes/gettext.bbclass
parent8174ba42226d2e590879c0adb03272c35b1b9946 (diff)
downloadpoky-8aee6b32a09dbbce304018f169eb6623182622c5.tar.gz
classes: Standardise whitespace in anonymous python methods and factor out functions for more efficent use by bitbake (as also patched in OE)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@875 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/gettext.bbclass')
-rw-r--r--meta/classes/gettext.bbclass18
1 files changed, 11 insertions, 7 deletions
diff --git a/meta/classes/gettext.bbclass b/meta/classes/gettext.bbclass
index 3785f5acd3..a1e00e72c1 100644
--- a/meta/classes/gettext.bbclass
+++ b/meta/classes/gettext.bbclass
@@ -1,11 +1,15 @@
1def gettext_after_parse(d):
2 import bb
3 # Remove the NLS bits if USE_NLS is no.
4 if bb.data.getVar('USE_NLS', d, 1) == 'no':
5 cfg = oe_filter_out('^--(dis|en)able-nls$', bb.data.getVar('EXTRA_OECONF', d, 1) or "", d)
6 cfg += " --disable-nls"
7 depends = bb.data.getVar('DEPENDS', d, 1) or ""
8 bb.data.setVar('DEPENDS', oe_filter_out('^(virtual/libiconv|virtual/libintl)$', depends, d), d)
9 bb.data.setVar('EXTRA_OECONF', cfg, d)
10
1python () { 11python () {
2 # Remove the NLS bits if USE_NLS is no. 12 gettext_after_parse(d)
3 if bb.data.getVar('USE_NLS', d, 1) == 'no':
4 cfg = oe_filter_out('^--(dis|en)able-nls$', bb.data.getVar('EXTRA_OECONF', d, 1) or "", d)
5 cfg += " --disable-nls"
6 depends = bb.data.getVar('DEPENDS', d, 1) or ""
7 bb.data.setVar('DEPENDS', oe_filter_out('^(virtual/libiconv|virtual/libintl)$', depends, d), d)
8 bb.data.setVar('EXTRA_OECONF', cfg, d)
9} 13}
10 14
11DEPENDS =+ "gettext-native" 15DEPENDS =+ "gettext-native"