blob: a38e783309615c926b88fedd851bf98cb8b7559c [file] [log] [blame]
Andrew Geissler595f6302022-01-24 19:11:47 +00001From afef4a9391e6bb1a6c3e73d370f240577ed8b0dd Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sun, 16 Jan 2022 11:21:54 +0800
4Subject: [PATCH] Fix icu config
5
6do not entertain cppflags from icu, this is because
7icu-config feeds the -I path without sysroot which
8caused native headers to be included and build is
9corrupted in any case its just adding -I/usr/include
10to the CCARGS which we loose nothing if its not
11entertained.
12
13Signed-off-by: Khem Raj <raj.khem@gmail.com>
14---
Patrick Williams520786c2023-06-25 16:20:36 -050015Upstream-Status: Pending
16
Andrew Geissler595f6302022-01-24 19:11:47 +000017 makedefs | 1 -
18 1 file changed, 1 deletion(-)
19
20diff --git a/makedefs b/makedefs
21index 3299eba..2a76f20 100644
22--- a/makedefs
23+++ b/makedefs
24@@ -826,7 +826,6 @@ EOF
25 ${BUILD_CC-gcc} -o makedefs.test makedefs.test.c $icu_cppflags \
26 $icu_ldflags >/dev/null 2>&1
27 if ./makedefs.test 2>/dev/null ; then
28- CCARGS="$CCARGS $icu_cppflags"
29 SYSLIBS="$SYSLIBS $icu_ldflags"
30 else
31 CCARGS="$CCARGS -DNO_EAI"
32--
332.17.1
34