summaryrefslogtreecommitdiffstats
path: root/meta/classes/gettext.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/gettext.bbclass')
-rw-r--r--meta/classes/gettext.bbclass28
1 files changed, 14 insertions, 14 deletions
diff --git a/meta/classes/gettext.bbclass b/meta/classes/gettext.bbclass
index a40e74f819..6f79e5ee76 100644
--- a/meta/classes/gettext.bbclass
+++ b/meta/classes/gettext.bbclass
@@ -1,17 +1,17 @@
1def gettext_after_parse(d): 1def gettext_dependencies(d):
2 # Remove the NLS bits if USE_NLS is no. 2 if d.getVar('USE_NLS', True) == 'no':
3 if bb.data.getVar('USE_NLS', d, 1) == 'no': 3 return ""
4 cfg = oe_filter_out('^--(dis|en)able-nls$', bb.data.getVar('EXTRA_OECONF', d, 1) or "", d) 4 if bb.data.getVar('INHIBIT_DEFAULT_DEPS', d, True) and not oe.utils.inherits(d, 'cross-canadian'):
5 cfg += " --disable-nls" 5 return ""
6 depends = bb.data.getVar('DEPENDS', d, 1) or "" 6 return d.getVar('DEPENDS_GETTEXT', False)
7 bb.data.setVar('DEPENDS', oe_filter_out('^(virtual/libiconv|virtual/libintl)$', depends, d), d)
8 bb.data.setVar('EXTRA_OECONF', cfg, d)
9 7
10python () { 8def gettext_oeconf(d):
11 gettext_after_parse(d) 9 # Remove the NLS bits if USE_NLS is no.
12} 10 if d.getVar('USE_NLS', True) == 'no':
11 return '--disable-nls'
12 return "--enable-nls"
13 13
14DEPENDS_GETTEXT = "gettext gettext-native" 14DEPENDS_GETTEXT = "virtual/gettext gettext-native"
15 15
16DEPENDS =+ "${DEPENDS_GETTEXT}" 16BASEDEPENDS =+ "${@gettext_dependencies(d)}"
17EXTRA_OECONF += "--enable-nls" 17EXTRA_OECONF += "${@gettext_oeconf(d)}"