diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-20 17:13:14 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-22 18:30:05 +0100 |
commit | fe634d47449899f7424adb77ff5bc7ddf8a07a47 (patch) | |
tree | ed0cab0857170043d54c32da242ba5a312f2c115 /meta/classes/cross.bbclass | |
parent | ae86a46c1b255e7c2833eb6d48ed46eba440e95a (diff) | |
download | openembedded-core-fe634d47449899f7424adb77ff5bc7ddf8a07a47.tar.gz openembedded-core-fe634d47449899f7424adb77ff5bc7ddf8a07a47.tar.bz2 openembedded-core-fe634d47449899f7424adb77ff5bc7ddf8a07a47.zip |
gettext: Improve USE_NLS handling for nativesdk/crosssdk/cross-canadian
The gettext handling of USE_NLS has become a bit tricky to understand, or
alter from the SDK context. This patch introduces a SDKUSE_NLS which can
be set to configure a given SDK/ADT to use NLS or not. This is independent
of the target system NLS usage.
The code in gettext.bbclass is therefore simplified and the classes
themselves now set USE_NLS to appropriate values. No NLS is used
for native, cross and crosssdk since it is never used there and
would just increase build time.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/cross.bbclass')
-rw-r--r-- | meta/classes/cross.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/cross.bbclass b/meta/classes/cross.bbclass index 54584fea52..f6e7dc1b39 100644 --- a/meta/classes/cross.bbclass +++ b/meta/classes/cross.bbclass @@ -75,3 +75,5 @@ cross_virtclass_handler[eventmask] = "bb.event.RecipePreFinalise" do_install () { oe_runmake 'DESTDIR=${D}' install } + +USE_NLS = "no" |