summaryrefslogtreecommitdiffstats
path: root/toolchain-layer/recipes-devtools/gcc/gcc-4.5/gcc-poison-dir-extend.patch
diff options
context:
space:
mode:
Diffstat (limited to 'toolchain-layer/recipes-devtools/gcc/gcc-4.5/gcc-poison-dir-extend.patch')
-rw-r--r--toolchain-layer/recipes-devtools/gcc/gcc-4.5/gcc-poison-dir-extend.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/toolchain-layer/recipes-devtools/gcc/gcc-4.5/gcc-poison-dir-extend.patch b/toolchain-layer/recipes-devtools/gcc/gcc-4.5/gcc-poison-dir-extend.patch
deleted file mode 100644
index 862b102133..0000000000
--- a/toolchain-layer/recipes-devtools/gcc/gcc-4.5/gcc-poison-dir-extend.patch
+++ /dev/null
@@ -1,25 +0,0 @@
1Add /sw/include and /opt/include based on the original
2zecke-no-host-includes.patch patch. The original patch checked for
3/usr/include, /sw/include and /opt/include and then triggered a failure and
4aborted.
5
6Instead, we add the two missing items to the current scan. If the user
7wants this to be a failure, they can add "-Werror=poison-system-directories".
8
9Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
10
11Index: gcc-4_5-branch/gcc/incpath.c
12===================================================================
13--- gcc-4_5-branch.orig/gcc/incpath.c
14+++ gcc-4_5-branch/gcc/incpath.c
15@@ -365,7 +365,9 @@ merge_include_chains (const char *sysroo
16 {
17 if ((!strncmp (p->name, "/usr/include", 12))
18 || (!strncmp (p->name, "/usr/local/include", 18))
19- || (!strncmp (p->name, "/usr/X11R6/include", 18)))
20+ || (!strncmp (p->name, "/usr/X11R6/include", 18))
21+ || (!strncmp (p->name, "/sw/include", 11))
22+ || (!strncmp (p->name, "/opt/include", 12)))
23 warning (OPT_Wpoison_system_directories,
24 "include location \"%s\" is unsafe for "
25 "cross-compilation",