mirror of
https://git.yoctoproject.org/poky
synced 2026-04-24 03:32:13 +02:00
We call the recipes 4.6 Remove the backport patches (From OE-Core rev: 68b545f4ff719f2b6e57d68b002dc9845c7a14ae) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
1.2 KiB
Diff
28 lines
1.2 KiB
Diff
Upstream-Status: Pending
|
|
|
|
Add /sw/include and /opt/include based on the original
|
|
zecke-no-host-includes.patch patch. The original patch checked for
|
|
/usr/include, /sw/include and /opt/include and then triggered a failure and
|
|
aborted.
|
|
|
|
Instead, we add the two missing items to the current scan. If the user
|
|
wants this to be a failure, they can add "-Werror=poison-system-directories".
|
|
|
|
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
|
|
|
|
Index: gcc-4.6.0/gcc/incpath.c
|
|
===================================================================
|
|
--- gcc-4.6.0.orig/gcc/incpath.c
|
|
+++ gcc-4.6.0/gcc/incpath.c
|
|
@@ -363,7 +363,9 @@ merge_include_chains (const char *sysroo
|
|
{
|
|
if ((!strncmp (p->name, "/usr/include", 12))
|
|
|| (!strncmp (p->name, "/usr/local/include", 18))
|
|
- || (!strncmp (p->name, "/usr/X11R6/include", 18)))
|
|
+ || (!strncmp (p->name, "/usr/X11R6/include", 18))
|
|
+ || (!strncmp (p->name, "/sw/include", 11))
|
|
+ || (!strncmp (p->name, "/opt/include", 12)))
|
|
warning (OPT_Wpoison_system_directories,
|
|
"include location \"%s\" is unsafe for "
|
|
"cross-compilation",
|