diff options
author | Khem Raj <raj.khem@gmail.com> | 2015-12-29 01:21:54 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-24 09:40:27 +0000 |
commit | ee1bfdb4571bcad9b33c0fc5a6a99940c6e8bf41 (patch) | |
tree | 659724e9c99604d94ec9bb6e3d1a8a4ce2d77921 /meta/recipes-extended/parted/parted_3.2.bb | |
parent | ed5da2a6e529f782b56facac9485c77a626bc49c (diff) | |
download | poky-ee1bfdb4571bcad9b33c0fc5a6a99940c6e8bf41.tar.gz |
parted: Fix build with uclibc
unlike glibc, uclibc does not have internal APIs implemented for
libiconv, so it needs to depend upon libiconv
(From OE-Core rev: 16cce4f3fa8bc40d6ab9498aa1d837e2db267947)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/parted/parted_3.2.bb')
-rw-r--r-- | meta/recipes-extended/parted/parted_3.2.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/parted/parted_3.2.bb b/meta/recipes-extended/parted/parted_3.2.bb index ff8ae097cc..30c00c861b 100644 --- a/meta/recipes-extended/parted/parted_3.2.bb +++ b/meta/recipes-extended/parted/parted_3.2.bb | |||
@@ -3,7 +3,7 @@ HOMEPAGE = "http://www.gnu.org/software/parted/parted.html" | |||
3 | LICENSE = "GPLv3+" | 3 | LICENSE = "GPLv3+" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=2f31b266d3440dd7ee50f92cf67d8e6c" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=2f31b266d3440dd7ee50f92cf67d8e6c" |
5 | SECTION = "console/tools" | 5 | SECTION = "console/tools" |
6 | DEPENDS = "ncurses readline util-linux" | 6 | DEPENDS = "ncurses readline util-linux virtual/libiconv" |
7 | PR = "r1" | 7 | PR = "r1" |
8 | 8 | ||
9 | SRC_URI = "${GNU_MIRROR}/parted/parted-${PV}.tar.xz \ | 9 | SRC_URI = "${GNU_MIRROR}/parted/parted-${PV}.tar.xz \ |
@@ -21,6 +21,7 @@ SRC_URI[md5sum] = "0247b6a7b314f8edeb618159fa95f9cb" | |||
21 | SRC_URI[sha256sum] = "858b589c22297cacdf437f3baff6f04b333087521ab274f7ab677cb8c6bb78e4" | 21 | SRC_URI[sha256sum] = "858b589c22297cacdf437f3baff6f04b333087521ab274f7ab677cb8c6bb78e4" |
22 | 22 | ||
23 | EXTRA_OECONF = "--disable-device-mapper" | 23 | EXTRA_OECONF = "--disable-device-mapper" |
24 | LDFLAGS_append_libc-uclibc = " -liconv " | ||
24 | 25 | ||
25 | inherit autotools pkgconfig gettext texinfo ptest | 26 | inherit autotools pkgconfig gettext texinfo ptest |
26 | 27 | ||