[oe-commits] Richard Purdie : libiconv: Extend to nativesdk and support non-linux targets

git at git.openembedded.org git at git.openembedded.org
Fri Aug 23 15:08:18 UTC 2013


Module: openembedded-core.git
Branch: master
Commit: af8c5adc71dc9bab57504d5a9dbf9e863fd4bf7b
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=af8c5adc71dc9bab57504d5a9dbf9e863fd4bf7b

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Tue Aug 20 17:19:29 2013 +0000

libiconv: Extend to nativesdk and support non-linux targets

This library is currently only available when targeting non-libc. This patch
also makes it available when targetting non-linux since it is likely of use
then.

It also adds a BBCLASSEXTEND for nativesdk since again, it can be useful
in that context.

Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/recipes-support/libiconv/libiconv_1.14.bb |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/meta/recipes-support/libiconv/libiconv_1.14.bb b/meta/recipes-support/libiconv/libiconv_1.14.bb
index b1d2612..470900b 100644
--- a/meta/recipes-support/libiconv/libiconv_1.14.bb
+++ b/meta/recipes-support/libiconv/libiconv_1.14.bb
@@ -22,6 +22,8 @@ S = "${WORKDIR}/libiconv-${PV}"
 inherit autotools pkgconfig gettext
 
 python __anonymous() {
+    if d.getVar("TARGET_OS", True) != "linux":
+        return
     if d.getVar("TCLIBC", True) == "eglibc":
         raise bb.parse.SkipPackage("libiconv is provided for use with uClibc only - eglibc already provides iconv")
 }
@@ -44,3 +46,5 @@ do_install_append () {
 	rm -rf ${D}${libdir}/preloadable_libiconv.so
 	rm -rf ${D}${libdir}/charset.alias
 }
+
+BBCLASSEXTEND = "nativesdk"



More information about the Openembedded-commits mailing list