diff options
Diffstat (limited to 'meta/classes/gettext.bbclass')
-rw-r--r-- | meta/classes/gettext.bbclass | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/meta/classes/gettext.bbclass b/meta/classes/gettext.bbclass index 17c894f74d..03b89b2455 100644 --- a/meta/classes/gettext.bbclass +++ b/meta/classes/gettext.bbclass | |||
@@ -1,17 +1,15 @@ | |||
1 | def gettext_dependencies(d): | 1 | def gettext_dependencies(d): |
2 | if d.getVar('USE_NLS', True) == 'no' and not oe.utils.inherits(d, 'native', 'nativesdk', 'cross'): | ||
3 | return "" | ||
4 | if d.getVar('INHIBIT_DEFAULT_DEPS', True) and not oe.utils.inherits(d, 'cross-canadian'): | 2 | if d.getVar('INHIBIT_DEFAULT_DEPS', True) and not oe.utils.inherits(d, 'cross-canadian'): |
5 | return "" | 3 | return "" |
6 | if oe.utils.inherits(d, 'native', 'cross'): | 4 | if d.getVar('USE_NLS', True) == 'no': |
7 | return "gettext-minimal-native" | 5 | return "gettext-minimal-native" |
8 | return d.getVar('DEPENDS_GETTEXT', False) | 6 | return d.getVar('DEPENDS_GETTEXT', False) |
9 | 7 | ||
10 | def gettext_oeconf(d): | 8 | def gettext_oeconf(d): |
11 | if oe.utils.inherits(d, 'native', 'cross'): | 9 | if d.getVar('USE_NLS', True) == 'no': |
12 | return '--disable-nls' | 10 | return '--disable-nls' |
13 | # Remove the NLS bits if USE_NLS is no or INHIBIT_DEFAULT_DEPS is set | 11 | # Remove the NLS bits if USE_NLS is no or INHIBIT_DEFAULT_DEPS is set |
14 | if (d.getVar('USE_NLS', True) == 'no' or d.getVar('INHIBIT_DEFAULT_DEPS', True)) and not oe.utils.inherits(d, 'nativesdk', 'cross-canadian'): | 12 | if d.getVar('INHIBIT_DEFAULT_DEPS', True) and not oe.utils.inherits(d, 'cross-canadian'): |
15 | return '--disable-nls' | 13 | return '--disable-nls' |
16 | return "--enable-nls" | 14 | return "--enable-nls" |
17 | 15 | ||