aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2010-12-10 14:29:39 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2010-12-14 22:35:50 +0000
commita52e4063f4da3ac377959bbd1bea425c9a466df9 (patch)
tree9e49041144e3c02f3f409f10d34df3553d7620a2 /bitbake
parent27c117141f0189332d9bc66fd371ed178428626e (diff)
downloadopenembedded-core-a52e4063f4da3ac377959bbd1bea425c9a466df9.tar.gz
bitbake: allow excluding dependencies of variables
Adds a vardepsexclude flag that can be used to exclude a dependency of a variable (the opposite of vardeps). This will allow the exclusion of variables from the hash generation much more selectively than blanket whitelisting using BB_HASHBASE_WHITELIST. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/data.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/data.py b/bitbake/lib/bb/data.py
index d4d43fd8c8..0c95ebb31b 100644
--- a/bitbake/lib/bb/data.py
+++ b/bitbake/lib/bb/data.py
@@ -297,6 +297,7 @@ def build_dependencies(key, keys, shelldeps, d):
deps |= parser.references
deps = deps | (keys & parser.execs)
deps |= set((d.getVarFlag(key, "vardeps") or "").split())
+ deps -= set((d.getVarFlag(key, "vardepsexclude") or "").split())
except:
bb.note("Error expanding variable %s" % key)
raise