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/recipes-core | |
parent | e623d3015bbdeb2b42b9763937be899a1fa9c0ca (diff) | |
download | openembedded-core-2e3727b05ae58aaf1eed88967c13cae085e7a702.tar.gz openembedded-core-2e3727b05ae58aaf1eed88967c13cae085e7a702.tar.bz2 openembedded-core-2e3727b05ae58aaf1eed88967c13cae085e7a702.tar.xz 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/recipes-core')
-rw-r--r-- | meta/recipes-core/glib-2.0/glib-2.0.inc | 6 | ||||
-rw-r--r-- | meta/recipes-core/glib-2.0/glib.inc | 3 |
2 files changed, 1 insertions, 8 deletions
diff --git a/meta/recipes-core/glib-2.0/glib-2.0.inc b/meta/recipes-core/glib-2.0/glib-2.0.inc deleted file mode 100644 index ccbbd2b35..000000000 --- a/meta/recipes-core/glib-2.0/glib-2.0.inc +++ /dev/null @@ -1,6 +0,0 @@ - -python () { - import bb - if bb.data.getVar("USE_NLS", d, 1) == "no": - raise bb.parse.SkipPackage("${PN} requires native language support.") -} diff --git a/meta/recipes-core/glib-2.0/glib.inc b/meta/recipes-core/glib-2.0/glib.inc index 0800c85c4..e25db3dea 100644 --- a/meta/recipes-core/glib-2.0/glib.inc +++ b/meta/recipes-core/glib-2.0/glib.inc @@ -13,8 +13,6 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7 \ BUGTRACKER = "http://bugzilla.gnome.org" SECTION = "libs" -require glib-2.0.inc - DEPENDS = "glib-2.0-native gtk-doc-native zip dbus" DEPENDS_virtclass-native = "gtk-doc-native pkgconfig-native gettext-native dbus-native" DEPENDS_virtclass-nativesdk = "libtool-nativesdk" @@ -36,3 +34,4 @@ FILES_${PN}-dev += "${libdir}/glib-2.0/include" FILES_${PN}-dbg += "${datadir}/glib-2.0/gdb ${datadir}/gdb" ARM_INSTRUCTION_SET = "arm" +USE_NLS = "yes" |