diff options
author | Khem Raj <raj.khem@gmail.com> | 2014-08-28 06:13:57 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-09-01 18:00:31 +0100 |
commit | fd15d6e0c8da75951a91d4467eda23c229b1026d (patch) | |
tree | 49eec83225482bebc2780658497bf28816526eee /meta/recipes-support/libiconv | |
parent | ddc8e7394051c6a2a9cfdab6a9cd39699b7d61a7 (diff) | |
download | openembedded-core-fd15d6e0c8da75951a91d4467eda23c229b1026d.tar.gz openembedded-core-fd15d6e0c8da75951a91d4467eda23c229b1026d.tar.bz2 openembedded-core-fd15d6e0c8da75951a91d4467eda23c229b1026d.zip |
recipes: Remove references to eglibc
change use of eglibc related variabled to glibc equivalents
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/recipes-support/libiconv')
-rw-r--r-- | meta/recipes-support/libiconv/libiconv_1.11.1.bb | 4 | ||||
-rw-r--r-- | meta/recipes-support/libiconv/libiconv_1.14.bb | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-support/libiconv/libiconv_1.11.1.bb b/meta/recipes-support/libiconv/libiconv_1.11.1.bb index c52564a42c..abf739bfa1 100644 --- a/meta/recipes-support/libiconv/libiconv_1.11.1.bb +++ b/meta/recipes-support/libiconv/libiconv_1.11.1.bb @@ -21,8 +21,8 @@ S = "${WORKDIR}/libiconv-${PV}" inherit autotools pkgconfig gettext python __anonymous() { - if d.getVar("TCLIBC", True) == "eglibc": - raise bb.parse.SkipPackage("libiconv is provided for use with uClibc only - eglibc already provides iconv") + if d.getVar("TCLIBC", True) == "glibc": + raise bb.parse.SkipPackage("libiconv is provided for use with uClibc only - glibc already provides iconv") } EXTRA_OECONF += "--enable-shared --enable-static --enable-relocatable" diff --git a/meta/recipes-support/libiconv/libiconv_1.14.bb b/meta/recipes-support/libiconv/libiconv_1.14.bb index d5f47b4e34..1b6fe09bb7 100644 --- a/meta/recipes-support/libiconv/libiconv_1.14.bb +++ b/meta/recipes-support/libiconv/libiconv_1.14.bb @@ -25,8 +25,8 @@ 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") + if d.getVar("TCLIBC", True) == "glibc": + raise bb.parse.SkipPackage("libiconv is provided for use with uClibc only - glibc already provides iconv") } EXTRA_OECONF += "--enable-shared --enable-static --enable-relocatable" |