[oe-commits] [bitbake] branch master-next updated: data: Fix handling of vardepvalueexclude

git at git.openembedded.org git at git.openembedded.org
Fri Sep 30 16:49:24 UTC 2016


rpurdie pushed a commit to branch master-next
in repository bitbake.

The following commit(s) were added to refs/heads/master-next by this push:
       new  81bc820   data: Fix handling of vardepvalueexclude
81bc820 is described below

commit 81bc8201c475d2b6bef0168573915ad0140f6dad
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Fri Sep 30 17:22:12 2016 +0100

    data: Fix handling of vardepvalueexclude
    
    The value used for exclusion was always being expanded. This is actually
    a bad idea since in most cases you'd want to exclude an unexpanded
    value and makes it impossible to use the variable as intended.
    
    This adjusts things so the value is not expanded and we can correctly
    remove things from checksums much more easily.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/data.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/data.py b/lib/bb/data.py
index 48d990d..c1f27cd 100644
--- a/lib/bb/data.py
+++ b/lib/bb/data.py
@@ -339,7 +339,7 @@ def build_dependencies(key, keys, shelldeps, varflagsexcl, d):
             deps |= parser.references
             deps = deps | (keys & parser.execs)
             return deps, value
-        varflags = d.getVarFlags(key, ["vardeps", "vardepvalue", "vardepsexclude", "vardepvalueexclude", "exports", "postfuncs", "prefuncs", "lineno", "filename"]) or {}
+        varflags = d.getVarFlags(key, ["vardeps", "vardepvalue", "vardepsexclude", "exports", "postfuncs", "prefuncs", "lineno", "filename"]) or {}
         vardeps = varflags.get("vardeps")
         value = d.getVar(key, False)
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list