mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 18:32:13 +02:00
package.bbclass: add LICENSE_EXCLUSION to vardeps
Ensure that changes to INCOMPATIBLE_LICENSE re-run do_package for affected recipes. (From OE-Core rev: b9b187f8a0f513e676cd3d18f71d1055445f29fa) Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
4e4050de52
commit
fd4f354853
@@ -1789,6 +1789,10 @@ def gen_packagevar(d):
|
||||
for p in pkgs:
|
||||
for v in vars:
|
||||
ret.append(v + "_" + p)
|
||||
|
||||
# Ensure that changes to INCOMPATIBLE_LICENSE re-run do_package for
|
||||
# affected recipes.
|
||||
ret.append('LICENSE_EXCLUSION-%s' % p)
|
||||
return " ".join(ret)
|
||||
|
||||
PACKAGE_PREPROCESS_FUNCS ?= ""
|
||||
|
||||
Reference in New Issue
Block a user