diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/diffstat/diffstat/avoid-check-user-break-cc.patch | 26 | ||||
-rw-r--r-- | meta/recipes-devtools/diffstat/diffstat_1.61.bb | 1 |
2 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-devtools/diffstat/diffstat/avoid-check-user-break-cc.patch b/meta/recipes-devtools/diffstat/diffstat/avoid-check-user-break-cc.patch new file mode 100644 index 0000000000..2df2d00185 --- /dev/null +++ b/meta/recipes-devtools/diffstat/diffstat/avoid-check-user-break-cc.patch | |||
@@ -0,0 +1,26 @@ | |||
1 | Upstream-Status: Inappropriate [oe specific] | ||
2 | |||
3 | m4 function CF_CC_ENV_FLAGS checks whether variable CC contains options '-I', '-U' | ||
4 | and '-D'. It is not suitable for oe that option such as '-D_FORTIFY_SOURCE=2' may | ||
5 | be included in CC. And then CC will be wrongly filtered. | ||
6 | |||
7 | So comment out CF_CC_ENV_FLAGS from function CF_PROG_CC. | ||
8 | |||
9 | Signed-off-by: Kai Kang <kai.kang@windriver.com> | ||
10 | --- | ||
11 | aclocal.m4 | 2 +- | ||
12 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
13 | |||
14 | diff --git a/aclocal.m4 b/aclocal.m4 | ||
15 | index 420fe83..eb73ea9 100644 | ||
16 | --- a/aclocal.m4 | ||
17 | +++ b/aclocal.m4 | ||
18 | @@ -1114,7 +1114,7 @@ CF_GCC_VERSION | ||
19 | CF_ACVERSION_CHECK(2.52, | ||
20 | [AC_PROG_CC_STDC], | ||
21 | [CF_ANSI_CC_REQD]) | ||
22 | -CF_CC_ENV_FLAGS | ||
23 | +dnl CF_CC_ENV_FLAGS | ||
24 | ])dnl | ||
25 | dnl --------------------------------------------------------------------------- | ||
26 | dnl CF_PROG_GROFF version: 2 updated: 2015/07/04 11:16:27 | ||
diff --git a/meta/recipes-devtools/diffstat/diffstat_1.61.bb b/meta/recipes-devtools/diffstat/diffstat_1.61.bb index f8b7b06cf2..1a76e78c15 100644 --- a/meta/recipes-devtools/diffstat/diffstat_1.61.bb +++ b/meta/recipes-devtools/diffstat/diffstat_1.61.bb | |||
@@ -9,6 +9,7 @@ LIC_FILES_CHKSUM = "file://install-sh;endline=42;md5=b3549726c1022bee09c174c72a0 | |||
9 | 9 | ||
10 | SRC_URI = "http://invisible-mirror.net/archives/${BPN}/${BP}.tgz \ | 10 | SRC_URI = "http://invisible-mirror.net/archives/${BPN}/${BP}.tgz \ |
11 | file://run-ptest \ | 11 | file://run-ptest \ |
12 | file://avoid-check-user-break-cc.patch \ | ||
12 | " | 13 | " |
13 | 14 | ||
14 | SRC_URI[md5sum] = "c048a32d55d8bd6724f382baf41f325f" | 15 | SRC_URI[md5sum] = "c048a32d55d8bd6724f382baf41f325f" |