xref: /OK3568_Linux_fs/yocto/poky/meta/recipes-support/libffi/libffi/not-win32.patch (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1From 20bc4e03442e15965ae3907013e9a177878f0323 Mon Sep 17 00:00:00 2001
2From: Ross Burton <ross.burton@intel.com>
3Date: Thu, 4 Feb 2016 16:22:50 +0000
4Subject: [PATCH] libffi: ensure sysroot paths are not in libffi.pc
5
6libffi's configure assumes that cross-compiled builds are complicated and
7introduces convoluted path manipulation involving gcc search paths to the
8install paths, resulting in paths like -L/usr/lib/../lib/ appearing in
9libffi.pc.  When pkg-config is then used to obtain the linker flags for libffi
10it can't tell that this path is on the default search path and returns
11$SYSROOT/usr/lib/../lib which then gets written all over the target sysroot.
12This then means the sstate can't be shared and triggers QA errors.
13
14As this block is generally pointless, disable it.
15
16Upstream-Status: Inappropriate
17Signed-off-by: Ross Burton <ross.burton@intel.com>
18
19---
20 configure.ac | 2 +-
21 1 file changed, 1 insertion(+), 1 deletion(-)
22
23diff --git a/configure.ac b/configure.ac
24index 7e8cd98..cf37e88 100644
25--- a/configure.ac
26+++ b/configure.ac
27@@ -405,7 +405,7 @@ AC_ARG_ENABLE(multi-os-directory,
28
29 # These variables are only ever used when we cross-build to X86_WIN32.
30 # And we only support this with GCC, so...
31-if test "x$GCC" = "xyes"; then
32+if false; then
33   if test -n "$with_cross_host" &&
34      test x"$with_cross_host" != x"no"; then
35     toolexecdir='${exec_prefix}'/'$(target_alias)'
36