mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
recipe_sanity: fix old override syntax
(From OE-Core rev: 18eeea6fcd8ade49390a978134f51646da2f7764) Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
b61e0002c1
commit
6aef6d8ccf
@@ -16,7 +16,7 @@ def bad_runtime_vars(cfgdata, d):
|
||||
for var in d.getVar("__recipe_sanity_badruntimevars").split():
|
||||
val = d.getVar(var, False)
|
||||
if val and val != cfgdata.get(var):
|
||||
__note("%s should be %s_${PN}" % (var, var), d)
|
||||
__note("%s should be %s:${PN}" % (var, var), d)
|
||||
|
||||
__recipe_sanity_reqvars = "DESCRIPTION"
|
||||
__recipe_sanity_reqdiffvars = ""
|
||||
|
||||
Reference in New Issue
Block a user