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:03:05 +0100 |
commit | 09e3e78999b0006d780d6a6dff26b23028fc1303 (patch) | |
tree | 50d11b7325b1a2bfcb81efa6fcc53550b7ce4411 /meta/recipes-support/libiconv | |
parent | 573b7436accfdda51397fc97e20b26253e9c699c (diff) | |
download | poky-09e3e78999b0006d780d6a6dff26b23028fc1303.tar.gz |
recipes: Remove references to eglibc
change use of eglibc related variabled to glibc equivalents
(From OE-Core rev: fd15d6e0c8da75951a91d4467eda23c229b1026d)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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}" | |||
21 | inherit autotools pkgconfig gettext | 21 | inherit autotools pkgconfig gettext |
22 | 22 | ||
23 | python __anonymous() { | 23 | python __anonymous() { |
24 | if d.getVar("TCLIBC", True) == "eglibc": | 24 | if d.getVar("TCLIBC", True) == "glibc": |
25 | raise bb.parse.SkipPackage("libiconv is provided for use with uClibc only - eglibc already provides iconv") | 25 | raise bb.parse.SkipPackage("libiconv is provided for use with uClibc only - glibc already provides iconv") |
26 | } | 26 | } |
27 | 27 | ||
28 | EXTRA_OECONF += "--enable-shared --enable-static --enable-relocatable" | 28 | 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 | |||
25 | python __anonymous() { | 25 | python __anonymous() { |
26 | if d.getVar("TARGET_OS", True) != "linux": | 26 | if d.getVar("TARGET_OS", True) != "linux": |
27 | return | 27 | return |
28 | if d.getVar("TCLIBC", True) == "eglibc": | 28 | if d.getVar("TCLIBC", True) == "glibc": |
29 | raise bb.parse.SkipPackage("libiconv is provided for use with uClibc only - eglibc already provides iconv") | 29 | raise bb.parse.SkipPackage("libiconv is provided for use with uClibc only - glibc already provides iconv") |
30 | } | 30 | } |
31 | 31 | ||
32 | EXTRA_OECONF += "--enable-shared --enable-static --enable-relocatable" | 32 | EXTRA_OECONF += "--enable-shared --enable-static --enable-relocatable" |