diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-24 12:14:19 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-24 12:19:01 +0000 |
commit | ef3c1dd3567be5b975ffa709296b5e9660e4bbb1 (patch) | |
tree | 87c0459facae897d6d15a877c530358a1af67175 /meta/recipes-devtools | |
parent | f13ee1e8771db1384ee8e667154f662c3d75a4ee (diff) | |
download | poky-ef3c1dd3567be5b975ffa709296b5e9660e4bbb1.tar.gz |
gcc-common.inc: Ensure WORKDIR doesn't adversly affect sstate checksums
Changes in WORKDIR were changing the do_patch stamps between gcc-crosssdk
and gcc-cross. This excludes the variable since in this case, we don't
need want those changes to affect the signatures.
(From OE-Core rev: 0de85d2ca3bc9674323302a35995dfddb6044a71)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-common.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-common.inc b/meta/recipes-devtools/gcc/gcc-common.inc index ed41b0ff8a..5ba68a094c 100644 --- a/meta/recipes-devtools/gcc/gcc-common.inc +++ b/meta/recipes-devtools/gcc/gcc-common.inc | |||
@@ -105,3 +105,7 @@ do_headerfix () { | |||
105 | addtask headerfix after do_unpack before do_patch | 105 | addtask headerfix after do_unpack before do_patch |
106 | 106 | ||
107 | do_headerfix[vardepvalue] = "PATH" | 107 | do_headerfix[vardepvalue] = "PATH" |
108 | |||
109 | # We need to ensure that for the shared work directory, the do_patch singatures match | ||
110 | The real WORKDIR location isn't a dependency for the shared workdir. | ||
111 | src_patches[vardepsexclude] = "WORKDIR" | ||