diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-23 11:32:19 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-28 13:46:09 +0100 |
commit | 2e3727b05ae58aaf1eed88967c13cae085e7a702 (patch) | |
tree | 44ed80ea65e6bff0ddc923d9128bb132856e3450 /meta/classes | |
parent | e623d3015bbdeb2b42b9763937be899a1fa9c0ca (diff) | |
download | openembedded-core-2e3727b05ae58aaf1eed88967c13cae085e7a702.tar.gz openembedded-core-2e3727b05ae58aaf1eed88967c13cae085e7a702.tar.bz2 openembedded-core-2e3727b05ae58aaf1eed88967c13cae085e7a702.zip |
base/glib-2.0: Simplify USE_NLS handling for glib-2.0
Currently the only way to get anything to build is to set USE_NLS="yes"
for glib-2.0. We might as well do this in the recipe by default for
now and simpllify the code.
The magic handling of USE_NLS_<recipename> is also removed since this
can be done in the form USE_NLS_pn-<recipename> using overrides these
days.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/base.bbclass | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 0bea639a95..575352d3f0 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -303,10 +303,6 @@ python () { bb.note("SKIPPING %s because it's %s" % (pn, this_license)) raise bb.parse.SkipPackage("incompatible with license %s" % this_license) - use_nls = bb.data.getVar('USE_NLS_%s' % pn, d, 1) - if use_nls != None: - bb.data.setVar('USE_NLS', use_nls, d) - # Git packages should DEPEND on git-native srcuri = bb.data.getVar('SRC_URI', d, 1) if "git://" in srcuri: |