diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-04-04 10:58:49 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-04-04 10:59:56 +0100 |
commit | 6b2ca964347cd9de0c50f47a56623a75e49c4b91 (patch) | |
tree | 0e3f7fefe3f2ba91b4bcd30937e2f475158cfe97 /bitbake | |
parent | 939142ff9cf72c8e4712a5405e915b0f7cf51cea (diff) | |
download | poky-6b2ca964347cd9de0c50f47a56623a75e49c4b91.tar.gz |
bitbake: data: Fix accidentally added parameter
This was only meant to be added for the handle_contains function in
a previous commit, fix it.
(Bitbake rev: 7399be398df39bc29e1b5eaac23b29cfae017abd)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/data.py b/bitbake/lib/bb/data.py index 363901b5d3..62ec214762 100644 --- a/bitbake/lib/bb/data.py +++ b/bitbake/lib/bb/data.py | |||
@@ -329,7 +329,7 @@ def build_dependencies(key, keys, shelldeps, varflagsexcl, ignored_vars, d): | |||
329 | deps = deps | (keys & parser.execs) | (keys & parsedvar.execs) | 329 | deps = deps | (keys & parser.execs) | (keys & parsedvar.execs) |
330 | value = handle_contains(value, parsedvar.contains, exclusions, d) | 330 | value = handle_contains(value, parsedvar.contains, exclusions, d) |
331 | if hasattr(parsedvar, "removes"): | 331 | if hasattr(parsedvar, "removes"): |
332 | value = handle_remove(value, deps, parsedvar.removes, varflags, d) | 332 | value = handle_remove(value, deps, parsedvar.removes, d) |
333 | if vardeps is None: | 333 | if vardeps is None: |
334 | parser.log.flush() | 334 | parser.log.flush() |
335 | if "prefuncs" in varflags: | 335 | if "prefuncs" in varflags: |