summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/ccache/files
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2019-01-24 14:57:31 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-01-26 13:39:37 +0000
commitf3b6a6e4ee41d466646866dfcd544b386cb499b9 (patch)
treee617b91a9106eb26e0935c325f6c95c4b57e4ff5 /meta/recipes-devtools/ccache/files
parent3bf20354725b460434ad8aee4f6a4e41ce683a49 (diff)
downloadpoky-f3b6a6e4ee41d466646866dfcd544b386cb499b9.tar.gz
ccache: 3.5 -> 3.6
* Rebased 0002-dev.mk.in-fix-file-name-too-long.patch and sent it to upstream, and got merged. * The LIC_FILES_CHKSUM is changed because of year updated. (From OE-Core rev: c2e17047b99a0d445dbe91b43d0744bfaa54c580) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/ccache/files')
-rw-r--r--meta/recipes-devtools/ccache/files/0002-dev.mk.in-fix-file-name-too-long.patch8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-devtools/ccache/files/0002-dev.mk.in-fix-file-name-too-long.patch b/meta/recipes-devtools/ccache/files/0002-dev.mk.in-fix-file-name-too-long.patch
index 68c2371fb3..16a6e9d80f 100644
--- a/meta/recipes-devtools/ccache/files/0002-dev.mk.in-fix-file-name-too-long.patch
+++ b/meta/recipes-devtools/ccache/files/0002-dev.mk.in-fix-file-name-too-long.patch
@@ -1,13 +1,13 @@
1From 7dab2995ed8eeccd7b0acd79668bc28f3a2427d5 Mon Sep 17 00:00:00 2001 1From 7dab2995ed8eeccd7b0acd79668bc28f3a2427d5 Mon Sep 17 00:00:00 2001
2From: Robert Yang <liezhi.yang@windriver.com> 2From: Robert Yang <liezhi.yang@windriver.com>
3Date: Wed, 16 Sep 2015 19:45:40 -0700 3Date: Wed, 16 Sep 2015 19:45:40 -0700
4Subject: [PATCH] dev.mk.in: fix file name too long 4Subject: [PATCH] dev.mk.in: fix file name too long error
5 5
6The all_cppflags change paths to filename which cause file name too long 6The all_cppflags changes path to filename which causes file name too long
7error when the path is longer than NAME_MAX (usually 255). Strip srcdir 7error when the path is longer than NAME_MAX (usually 255). Strip srcdir
8to fix the problem. 8to fix the problem.
9 9
10Upstream-Status: Pending 10Upstream-Status: Backport [https://github.com/ccache/ccache/commit/4d86e884d07ba1853a0c70507cc4d04107f57c29]
11 11
12Signed-off-by: Robert Yang <liezhi.yang@windriver.com> 12Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
13 13
@@ -22,7 +22,7 @@ index 91b0a57..583ade0 100644
22@@ -1,7 +1,7 @@ 22@@ -1,7 +1,7 @@
23 # GNU make syntax reigns in this file. 23 # GNU make syntax reigns in this file.
24 24
25 all_cflags += -Werror 25 all_cflags += -Werror @more_warnings@
26-all_cppflags += -MD -MP -MF .deps/$(subst .._,,$(subst /,_,$<)).d 26-all_cppflags += -MD -MP -MF .deps/$(subst .._,,$(subst /,_,$<)).d
27+all_cppflags += -MD -MP -MF .deps/$(subst .._,,$(subst /,_,$(subst $(srcdir)/,,$<))).d 27+all_cppflags += -MD -MP -MF .deps/$(subst .._,,$(subst /,_,$(subst $(srcdir)/,,$<))).d
28 28