diff options
author | Ming Liu <ming.liu@windriver.com> | 2014-04-07 19:27:18 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-09 09:53:14 +0100 |
commit | d06a10a54a445cc7f86d22ff0a74135f94f9f77b (patch) | |
tree | 84ebfdfce79a0542a147967bd1fcb5d3fd9666a0 /meta | |
parent | b3f71950616228fb378da9173345cc341018e101 (diff) | |
download | poky-d06a10a54a445cc7f86d22ff0a74135f94f9f77b.tar.gz |
freetype: fix multilib header conflict - ftconfig.h
ftconfig.h conflicts between 32-bit and 64-bit versions.
(From OE-Core rev: 590446f6b191b32efc462c3cb7ac7cce4c897b05)
Signed-off-by: Ming Liu <ming.liu@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-graphics/freetype/freetype_2.5.2.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-graphics/freetype/freetype_2.5.2.bb b/meta/recipes-graphics/freetype/freetype_2.5.2.bb index b93453ae59..0c62a678cd 100644 --- a/meta/recipes-graphics/freetype/freetype_2.5.2.bb +++ b/meta/recipes-graphics/freetype/freetype_2.5.2.bb | |||
@@ -21,7 +21,7 @@ SRC_URI[sha256sum] = "4ff4bd393aa01071ec7b849d035508a505a78f88b2bcf25ff11e58e43c | |||
21 | 21 | ||
22 | S = "${WORKDIR}/freetype-${PV}" | 22 | S = "${WORKDIR}/freetype-${PV}" |
23 | 23 | ||
24 | inherit autotools-brokensep pkgconfig binconfig | 24 | inherit autotools-brokensep pkgconfig binconfig multilib_header |
25 | 25 | ||
26 | LIBTOOL = "${S}/builds/unix/${HOST_SYS}-libtool" | 26 | LIBTOOL = "${S}/builds/unix/${HOST_SYS}-libtool" |
27 | EXTRA_OEMAKE = "'LIBTOOL=${LIBTOOL}'" | 27 | EXTRA_OEMAKE = "'LIBTOOL=${LIBTOOL}'" |
@@ -50,5 +50,9 @@ do_compile_prepend() { | |||
50 | ${BUILD_CC} -o objs/apinames src/tools/apinames.c | 50 | ${BUILD_CC} -o objs/apinames src/tools/apinames.c |
51 | } | 51 | } |
52 | 52 | ||
53 | do_install_append() { | ||
54 | oe_multilib_header freetype2/config/ftconfig.h | ||
55 | } | ||
56 | |||
53 | BBCLASSEXTEND = "native" | 57 | BBCLASSEXTEND = "native" |
54 | 58 | ||