diff options
author | Matthew McClintock <msm@freescale.com> | 2011-11-17 16:42:47 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-24 22:09:20 +0000 |
commit | b64cbe0b511de8d8943ce34cbb4901239d9f0cb0 (patch) | |
tree | 7dd83a1accb6236075cc91872ff5b6171fdffffa /meta/classes | |
parent | 7cb5063d8bc59534dc64b19164cb9bdf0c04c68b (diff) | |
download | openembedded-core-b64cbe0b511de8d8943ce34cbb4901239d9f0cb0.tar.gz openembedded-core-b64cbe0b511de8d8943ce34cbb4901239d9f0cb0.tar.bz2 openembedded-core-b64cbe0b511de8d8943ce34cbb4901239d9f0cb0.zip |
patch.bbclass: Add PATCHRESOLVE to excluded vars for generating sstate-cache
The method of resolving the patch should not effect the sstate-cache
signature.
Signed-off-by: Matthew McClintock <msm@freescale.com>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/patch.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/patch.bbclass b/meta/classes/patch.bbclass index b2b6d976c5..ac6c1ce1e5 100644 --- a/meta/classes/patch.bbclass +++ b/meta/classes/patch.bbclass @@ -140,7 +140,7 @@ python patch_do_patch() { raise bb.build.FuncFailed(str(sys.exc_value)) resolver.Resolve() } -patch_do_patch[vardepsexclude] = "DATE SRCDATE" +patch_do_patch[vardepsexclude] = "DATE SRCDATE PATCHRESOLVE" addtask patch after do_unpack do_patch[dirs] = "${WORKDIR}" |