mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
ff0f815593
Acked-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Eric Bénard <eric@eukrea.com> Acked-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
26 lines
1.1 KiB
Diff
26 lines
1.1 KiB
Diff
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_5-branch/gcc/incpath.c
|
|
===================================================================
|
|
--- gcc-4_5-branch.orig/gcc/incpath.c
|
|
+++ gcc-4_5-branch/gcc/incpath.c
|
|
@@ -365,7 +365,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",
|