classes/gettext: Do not disable nls for non target recipes

nls disabling is target specific but USE_NLS=no will
disable nls even for other kind of recipes. We should
let them build with nls

(From OE-Core rev: 7be58f695aaa8b111fcf79a3505964e9f49b108a)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Khem Raj 2011-07-15 23:22:18 -07:00 committed by Richard Purdie
parent caf22e3ba2
commit b2c8f9320a
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ def gettext_dependencies(d):
def gettext_oeconf(d):
# Remove the NLS bits if USE_NLS is no.
if d.getVar('USE_NLS', True) == 'no':
if d.getVar('USE_NLS', True) == 'no' and not oe.utils.inherits(d, 'native', 'nativesdk', 'cross', 'cross-canadian'):
return '--disable-nls'
return "--enable-nls"