blob: 62daaf4b389d2e268240252a01be5ee8b76f410e [file] [log] [blame]
Andrew Geissler82c905d2020-04-13 13:39:40 -05001From 306719369a0d3608b4ff2737de74ae284788a14b 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
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05006libffi'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
Andrew Geissler82c905d2020-04-13 13:39:40 -050019---
20 configure.ac | 2 +-
21 1 file changed, 1 insertion(+), 1 deletion(-)
22
23diff --git a/configure.ac b/configure.ac
24index b764368..d51ce91 100644
Brad Bishopc68388fc2019-08-26 01:33:31 -040025--- a/configure.ac
26+++ b/configure.ac
Andrew Geissler82c905d2020-04-13 13:39:40 -050027@@ -354,7 +354,7 @@ AC_ARG_ENABLE(multi-os-directory,
Brad Bishopc68388fc2019-08-26 01:33:31 -040028
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050029 # 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" &&
Brad Bishop316dfdd2018-06-25 12:45:53 -040034 test x"$with_cross_host" != x"no"; then
Andrew Geissler82c905d2020-04-13 13:39:40 -050035 toolexecdir='${exec_prefix}'/'$(target_alias)'