diff options
author | Maxin B. John <maxin.john@intel.com> | 2017-07-11 15:58:12 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-07-17 14:01:37 +0100 |
commit | 6e002d9ffcaec5cc737de144c8c1efdee844e5b4 (patch) | |
tree | 07593426f192c9897d6347bdab5c9b9269b08c2d /meta | |
parent | c27eb6e6c6903270e801fae159333197bf40514a (diff) | |
download | poky-6e002d9ffcaec5cc737de144c8c1efdee844e5b4.tar.gz |
libx11: fix build error
libx11 build fails with this error:
fatal error: bits/long-double-64.h: No such file or directory
| compilation terminated.
This is due to the fact that "makekeys" should be compiled for the host
since it is executed at build time to generate ks_tables.h. Since we have
the X11 include files in the standard path of oe-core, we can remove the
X11_CFLAGS from Makefile.
(From OE-Core rev: c2bc26a163be231f489ea13e6f7226715765732e)
Signed-off-by: Maxin B. John <maxin.john@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-graphics/xorg-lib/libx11_1.6.5.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-graphics/xorg-lib/libx11_1.6.5.bb b/meta/recipes-graphics/xorg-lib/libx11_1.6.5.bb index 71cbf67a0a..50e8837b98 100644 --- a/meta/recipes-graphics/xorg-lib/libx11_1.6.5.bb +++ b/meta/recipes-graphics/xorg-lib/libx11_1.6.5.bb | |||
@@ -5,6 +5,9 @@ BBCLASSEXTEND = "native nativesdk" | |||
5 | 5 | ||
6 | SRC_URI += "file://disable_tests.patch \ | 6 | SRC_URI += "file://disable_tests.patch \ |
7 | " | 7 | " |
8 | do_configure_append () { | ||
9 | sed -i -e "/X11_CFLAGS/d" ${B}/src/util/Makefile | ||
10 | } | ||
8 | 11 | ||
9 | SRC_URI[md5sum] = "0f618db70c4054ca67cee0cc156a4255" | 12 | SRC_URI[md5sum] = "0f618db70c4054ca67cee0cc156a4255" |
10 | SRC_URI[sha256sum] = "4d3890db2ba225ba8c55ca63c6409c1ebb078a2806de59fb16342768ae63435d" | 13 | SRC_URI[sha256sum] = "4d3890db2ba225ba8c55ca63c6409c1ebb078a2806de59fb16342768ae63435d" |